'''A modified version of a program by William Fairgrieve, age 10.
Used to demo modules and the meaning of 'if __name__ == "__main__":'
Try running this directly, and also from importer.py.'''

def thank_you(word0, word1, word2, word3):
    '''Thank your lovely aunt for the gift.'''
    
    print "Dear Auntie %s," % word0
    print "I want to thank you for sending me the %s gift." % word1
    print "I never had a/an %s before.  I can use it to fix all my %s." \
          % (word2, word3)
    print "love, \nYour nephew\nxo"
 

word0 = raw_input('Name of a person (Female) ')
word1 = raw_input('adjective ')
word2 = raw_input('noun ')
word3 = raw_input('plural noun ')

thank_you(word0, word1, word2, word3)
