# other supportive code. def main(): # Put your code for h1.py as the main body of your program here. # Your code ends here. 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. if __name__ == "__main__": main()