#POTD 2 skel
# Author: <anonymized>
# Date: 10/1/2025
# Description: Math Quiz Program

x = int(input("Enter the first number: "))
y = int(input("Enter the second number: "))

print("What is " + str(x) + " * " + str(y) + " ?")
input()  
print(str(x) + " * " + str(y) + " is " + str(x * y))
