#include int main() { int num1, num2; cout << "Enter two numbers, and I will\ntell you their relationship\n"; cin >> num1 >> num2; if ( num1 > num2 ); cout << num1 << "is larger\n" << endl; if ( num1 < num2 ); cout << num2 << "is larger\n" << endl; if ( num1 == num2 ); cout << num1 << " is equal to " << num2 << endl; return 0; }