Question #332289

write a program to print the product of given two numbers.



Input the first line of input will contain and integer.



the second line of input will contain an integer.

Expert's answer

a = int(input('enter the first integer number: '))
b = int(input('enter the second integer number: '))
print(a * b)
LATEST TUTORIALS
APPROVED BY CLIENTS