First assignment MIT 6.00 OpenCourseWare
Introduction to programming, python based.
# Problem Set 0
# Name: Arnualdas Dalinda
# Collaborators: None
# Time: 0:15
# Ask last and first name
LastName = raw_input('Please enter your last name: ')
FirstName = raw_input('Please enter your first name: ')
# Output First and Last name
print FirstName, LastName
# I also write this for python 3.x
#
##LastName = input('Please enter your last name: ')
##FirstName = input('Please enter your first name: ')
##print(FirstName, ' ', LastName)