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