Python script asks for a first and last name then prints it out
# Problem Set 0
# Name: Atomic Code Lab
# Coded for Python 3.2
# Script asks for first and last name, then prints it out.
first_name = input("Please enter your first name.\n")
last_name = input("Please enter your last name.\n")
print(first_name + '\n' + last_name)