Python Program to add two integers

a=int(input("Enter the first number"))
b=int(input("Enter the second number"))
sum=a+b
print("Sum is:",sum)

Comments