#include using namespace std; int main() { bool x, y, z; x = 2 == 1; y = 3 >= 2; z = 5 != 5; cout << "x = " << x << "\n"; cout << "y = " << y << "\n"; cout << "z = " << z << endl; cout << "\n\n"; system( "PAUSE" ); return( 0 ); }