1x = input("give me the number you want to multiply")
2y = input("give me the second number you want to multiply")
3
4
5y = int(y)
6x = int(x)
7
8
9print (y * x)
1Multiply two integer numbers
2
3num1=int(input("Enter the first number: "))
4#input value for variable num1
5num2=int(input("Enter the second number: "))
6#input value for variable num2
7mul=num1*num2;
8#perform multiplication operation
9print("the product of given numbers is: ",mul)
10#display the product
11
12When the above code is compiled and executed, it produces the following results
13Enter the first number: 23
14Enter the second number is: 32
15the product of the given numbers is 736
16