Computer Science, asked by parthsharma101007, 6 months ago

write a program to find product of two number #Python​

Answers

Answered by atrs7391
2

a = int(input("Enter first number: "))

b = int(input("Enter second number: "))  

p = a * b

print("Sum of the numbers =", p)

Similar questions