Computer Science, asked by vinisaurabh84, 1 year ago

Input any two numbers and print their sum and product by leaving two lines in between

Answers

Answered by chiefprashant
4

Answer:

#Python

Explanation:

a = int(input("First no. "))

b = int(input("second no. "))

print(a + b)

print()

print(a*b)

Similar questions