Write a program that inputs some positive numbers
and prints their sum.
Answers
Answered by
0
Explanation:
# Python programme
a = input("enter the first number\n")
b = input("enter the second number\n")
print(f"The sum of {a} and {b} is" , a+b)
Similar questions