#include using std::cout; using std::cin; using std::endl; int main() { int i; int j; cout << "Enter the first number " << endl; cin >> i; cout << "Enter the second number " << endl; cin >> j; if (i > j) //Adjust the code to have ! here but the same condition holds { cout << "The first number is greater than the second number " << endl; } else if(i==j) { cout << "The first number is equal to the second number " << endl; } else { cout << "The first number is less than the second number " << endl; } int k; cout << "Enter the number " << endl; cin >> k; if ((k % 3 == 0) && (k % 2 == 0)) { cout << "The number " << k << " is divisible by 6" << endl; } else { cout << "The number " << k << " is NOT divisible by 6" << endl; } }