Write a program that plays a simple maths game. The program should read two integer numbers from the user and then ask the user to enter the product of the two numbers. If the product is correct, the program should display "Correct", otherwise it should display "Incorrect". The program prompts should be: Enter the first number: Enter the second number: Enter [first_number] * [second_number] = Notes: The output must be in the format shown in the example, including the format of the prompt, and all spaces and punctuation. All numbers should be displayed as integer values.
How do I get the input prompt values into the third input prompt?
first_number = input("Enter the first number: ")
second_number = input("Enter the second number: ")
product = input("Enter", first_number * second_number, "= ")
if first_number * second_number == product :
print("Correct")
else:
print("Incorrect")