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