Computer Science, asked by RanjeetRealMadrid7, 1 month ago

Write a program in Python to accept two numbers and display their sum. Also write the output​

Answers

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