N1 = input("Enter the 1st Number (N1) ") N2 = input("Enter the 2nd Number (N2) ") Sum = N1 + N2 print ("The Sum is %d" % Sum) print ("The Sum of %d + %d is %d" % (N1, N2, Sum))