// pgm7 -- if statement // 9/12/16 #include #include using namespace std; int main() { int x,y; cout << "Enter 2 integers and we will tell you which " << "is bigger: "; cin >> x >> y; if (x > y) cout << "x=" << x << " is bigger than y=" << y << endl; else cout << "x=" << x << " is less or equal to y=" << y << endl; return 0; }