MIT OpenCourseWare 6.00 Introduction to Computer Science and Programming: Lesson 1, HW 1
#++++++++++++++++++++++++++++++++++++++++++++
# Problem Set 0
# Name: Jeff Farkas
# Date/Time Submitted: 10/19/2010 Time: 7:00 AM
# Time for assignment: 5 Minutes.
# This program is made to allow a user to input their last
# and first name and then print them out in the
# the following order: First Name and Last Name.
#++++++++++++++++++++++++++++++++++++++++++++
last_name = raw_input('Enter your last name: ')
first_name = raw_input('Enter your first name: ')
space = ' '
print 'Your name is: ' + first_name + space + last_name
jeff_farkas
1 year ago