how to get product of any two number given by user in python?????plzz ans fast
Answers
Answered by
1
lets take two number to be defined are a and b
a=input("enter a number to which you want to multiply")
b=input("enter another number")
c=a*b
print c,
I hope you understand....
a=input("enter a number to which you want to multiply")
b=input("enter another number")
c=a*b
print c,
I hope you understand....
Similar questions