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