x = int(input('Please input an integer: ')) # '--> ' is prompt, the first argument in this call of input function. y = int(input('Please input a second integer: ')) z = x + y print('The sum of the two numbers is ' + str(z)) # str() converts to a string.