######################################################################################
# Prompt for input and do some processing
# aName is a variable. It's a storage location where a name can be saved.
# input prints the prompt and waits for you to type something and press Enter.
# The print line uses + to join bits of text together.
######################################################################################

aName = input("Hello. What is your name? ")
print ("Hello " + aName + "!");