//Excercise 1-32 #include int main() { int num1, num2; cout << "Welcome to the multiple game!!\n\n"; cout << "Enter two integers\n\n"; cin >> num1 >> num2; if ( num1 % num2 == 0 ) cout << "\n\nGuess what?\n\n" << num1 << " is a multiple of " << num2 << "\n\n"; if ( num1 % num2 != 0 ) cout << "\n\nGuess what?\n\n" << num1 << " is not a multiple of " << num2 << "\n\n"; return 0; }