Write a program in Python to accept two numbers and display their sum. Also write the output
Answers
Answered by
0
Answer:
a= input("Enter a number: ")
b= input("Enter another number: ")
sum=int(a)+int(b)
print("The sum of {0} and {1} is {2}".format (a,b,sum))
Similar questions