# This is a python comment

name = raw_input('Hi... what is your name? ')   # assign user's input to a variable
print                                           # prints a blank line

if name == 'Geoff':                             # is it Geoff?
    print name, '??'                             
    print 'Didn\'t I tell you to _stay_ gone?!'

elif name == 'Zach':                            # otherwise, is it Zach?
    print 'Aaaaaaaaaah!'
    
else:                                           # in all other cases...
    print 'Welcome to Python,', name, '!'


