# Joe Schmoe
#
# Program    : stringCh2.py
# Description: print out a friendly message
# Input      : word describing mental condition
# Output     : string describing Mike's mental condition

def main ():
    # set up initial variables
    what = "Hi there"
    the = "Mike"
    heck = what + ", " + the + "!"
    
    # get input
    huh = input ("Enter your mental condition: ")
    final = "You are " + huh + "."
    
    # show output
    print (heck)
    print (final)
main()