Input any two numbers and print their sum and product by leaving two lines in between
Answers
Answered by
4
Answer:
#Python
Explanation:
a = int(input("First no. "))
b = int(input("second no. "))
print(a + b)
print()
print(a*b)
Similar questions