// using a pre-test loop #include using namespace std; int main() { int first; int second; cin >> first >> second; while(cin) { cout << "The product of " << first << " and " << second << " is " << first*second << endl; cout << endl; cin >> first >> second; } return 0; }