The following will ask for two numbers to multiply:
Number1 = int(input("Type in the first number: ")) Number2 = int(input("Type in teh second number:")) print("The answer is", Number1*Number2)