# Form letter program

# Get the name of the recipient from the user
name = raw_input('Enter a name:')

print 'Dear',name+',' # concatenation operator
# puts comma right after name, with no space inbetween
print 'I am writing this very personal note,',name
print 'to let you know how much I respect you.'

print 'Best regards,'
print 'Prof. Amenta'

# pause before ending the program
raw_input('Press enter to exit')



