print ('Hello, what is your name?') name = input() print ('Hello', name) # Asks user for their name. User inputs their name. Hello <name> is printed to the screen.