Write a python code to display two numbers and their products.
Answers
Answered by
1
Answer:
#python program to display product of #two numbers
a = int(input('Enter the first number'))
b = int(input('Enter the second number'))
c = a*b
print("The product of numbers=", c)
Answered by
4
Explanation:
hope it help uh❤
please mark as brainly,.
Attachments:
Similar questions