// Program takes 2 integers from the keyboard and prints // information about their relationship #include main () { int int1, int2; cout << "Enter the first integer " << endl; cin >> int1; cout << "Enter the second integer " << endl; cin >> int2; if (int1 == int2) cout << "The two numbers are equal!" << endl; if (int1 < int2) cout << int1 << " is less than " << int2 << "!" << endl; if (int1 > int2) cout << int1 << " is greater than " << int2 << "!" << endl; return 0; }