Computer Science, asked by Aadhyanathas, 6 hours ago


Write a program to input two numbers and display their sum and product with suitable message. in python​

Answers

Answered by adarshshukla801
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