12. Write a program in
python that accepts the
Input of two numbers from
user and print the product
of the numbers . [Marks -
3]
Answers
Answered by
0
Answer:
g=input(Enter your name:")
print g
Explanation:
thats it g is a variable you can make
Answered by
2
Answer:
Explanation:
num1=int(input("Enter !st number:"))
num2=int(input("Enter 2nd number:"))
product=num1*num2
print("Product of two entered number is ",product)
Similar questions