// your name and UCI student ID here
// ECE 10, Homework 1, Problem 1
// your section
#include <iostream.h> // C++ standard input/output library
int main()
{
int x, y; // two integer numbers
// Get numbers from the user
cout << "Please enter two numbers, press <enter> afterward:" << endl;
cin >> x >> y;
// Output the product
cout << x << " * " << y << " = " << x * y << endl;
cout << "All done." << endl;
return 0;
}