Program asks for input of last name and first name, then prints first name and last name in that order.
# Assignment 0, Problem 1
lastName = raw_input("What is your last name? ")
firstName = raw_input("What is your first name? ")
print firstName + " " + lastName