#include main() { int x, y, min; cout << "Enter x: "; cin >> x; cout << "Enter y: "; cin >> y; if (x < y) min = x; else min = y; cout << x; if (x > y) cout << " > "; else cout << " <= "; cout << y << endl; cout << min << " is the smaller number." << endl; return 0; }