First, it asks the user for their first name. Second, it asks them for their last name and after that it prints their first name and last name in that order.
#assignment 0
#asks user for their first name and last name
firstname = raw_input('Please enter your first name: ')
lastname = raw_input('Please enter your last name: ')
print firstname, lastname