#include using namespace std; int main() { int first; int second; do { cin >> first >> second; if (cin) { cout << "The product of " << first << " and " << second << " is " << first*second << endl; cout << endl; } } while (cin); return 0; }