# form letter program

# raw_input asks for a response from the user
name = raw_input("Enter a name: ")

#User's response is in variable `name`
# \n goes on to the next line
print "Dear",name,",\n\n"
print "I'm writing a very personal message."

# Use raw_input again to make the program pause
# before exiting
raw_input("Type enter to exit.")

