Computer Science, asked by vaibhavmishra8874, 4 months ago

write a python program to print product of two number for class 8​

Answers

Answered by alkamodi04406
9

Answer:

Python program to multiply two numbers

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:-

mark as BRAINLIST

please follow me and give a thanks

Similar questions