#pset0.py
#Problem Set 0
#Name: tbourke2
#Collaborators:None
#Time: About a minute
lastname = raw_input ('Please enter your last name: ') #Ask the user for their last name
firstname = raw_input ('Please enter your first name: ') #Ask the user for their first name
print firstname #Print the users first name
print lastname #Print the users last name