# Problem 1
# Time: 00:00:30
# Name: Jeffrey Robinson
# Description: Will read in the users last name then their
# first name. Then the program will print out
# their first name then print out their last
# name
last_name = raw_input("Please enter your last name ")
first_name = raw_input("Please enter your first name ");
print first_name, last_name