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