Computer Science, asked by Shaansud08, 1 month ago

write a python program so that it takes input from the user and multiplies the two numbers

Answers

Answered by ritikgupta1403
0

Answer:

num1=int(input("Enter the first number: "))

#input value for variable num1

num2=int(input("Enter the second number: "))

#input value for variable num2

mul=num1*num2;

#perform multiplication operation

print("the product of given numbers is: ",mul)

#display the product.

Explanation:

Output

Enter the first number: 23

Enter the second number is: 32

the product of the given numbers is 736

Similar questions