Computer Science, asked by kushimalani2005, 8 months ago

Write a program that inputs some positive numbers
and prints their sum.​

Answers

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