'''Two numeric inputs''' x = input("Enter a number: ") y = input("Enter a second number: ") print 'The sum of %s and %s is %s.' % (x, y, x+y)