Python Program To Add Two Numbers

 = int(input("Enter 1st number: "))

= int(input("Enter 2nd number: "))

sum = a + b
print(sum)