Asks for last name, then first name. Prints, "Your name is [first name] [last name]." Next, prints first name followed by last name on a new line. I am using Python 3.1.
# Problem Set 0
# Name: dangr1
# Collaborators: 0
# Time: 15 minutes
# Python 3.1
responselast = input('What is your last name? ')
responsefirst = input('What is your first name? ')
print ('Your name is',responsefirst,responselast+'.')
print (responsefirst+'\n'+responselast)