# HW0 program 2
# This is supposed to enter two numbers
# and then print their product.

def main():
print "Enter a number >>> ",
x = input()
print "Enter another number >>> ",
y = input()
print str(x) + " * " + str(y) + " = " + str(x*y)
 
main()
