Sorry, doing mine in Python 3.1.1 as it is what I can read easier and I like the challenge of converting the coursework to 3.1.1. If this is going to be a problem going forward please let me know.
#Problem Set 0
#Name: Dick Jones
#Collaborators: N/A
#Time: 3 minutes
#
firstName = input("What is your first name?\n")
lastName = input("What is your last name?\n")
print('Greetings, ' + firstName + ' ' + lastName + '!')