"""Adds two numbers.""" x = int(raw_input("Give me an integer: ")) y = int(raw_input("Give me another integer: ")) print("The sum of {} and {} is {}!".format(x, y, x + y))