//outputs the results from the relational and logical operators #include using namespace std; int main(){ cout << (5 == 10) << endl; cout << (10 > 5) << endl; cout << ((5 >= 1) && (5 <= 10)) << endl; return 0; }