######################################################################################
# Prompt for input and do some processing
# cmd is a variable. It's a storage location where a value can be saved.
# input prints the prompt and waits for you to type something and press Enter.
# \n starts a new line - it's useful for layout
# "if" allows you to process code differently depending on input conditions.
# This program is polite if you type "HELLO" and it's case sensitive.
# Otherwise the output is offensive.
# Note the difference between = and ==
# A single = assigns a value
# A double == tests for equality
######################################################################################

cmd = input("\n\n\n\n\nPlease type \"HELLO\" ... ")

if cmd == "HELLO":
  print ("\nHELLO TO YOU TOO!\n\n\n\n\n")
else:
  print ("\nBOG OFF!\n\n\n\n\n")