Write a program to input any two numbers and print their sum, and product by leaving two lines in between
Answers
Answered by
2
Answer:
a=input ('enter first number')
b=input ('enter second number')
print(int(a) +int (b))
print( int (a) *int (b))
python lang,,, you can convet it into different language
Similar questions