Write a program to input two numbers and display their sum and product with suitable message. in python
Answers
Answered by
3
Answer:
x- int( input ("enter a number"))
y-int( input ("enter a number"))
s - x+y
p - x*y
print(s)
print(p)
hope it will help you for your work
Similar questions