#my_file = open('story.txt') # default is 'r'

#for line in my_file:
    #print line,
    
#print "\nall done"

output_file = open('letter.txt','w')
output_file.write('Dear Aunt Myrtle,\n')
output_file.write('How are you?\n')
output_file.close()

output_file = open('letter.txt','r')
s = output_file.read()
print s,


