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.
a = int(input('enter the first integer number: '))
b = int(input('enter the second integer number: '))
print(a * b)
Comments
Leave a comment