1. Asks the user to enter his/her last name.
2. Asks the user to enter his/her first name.
*3. Prints out the user’s first and last names in that order.
# Problem Set 0
# Name: garg
first_name = raw_input('Enter your last name:\n**')
last_name = raw_input('Enter your first name:\n**')
print first_name
print last_name