MIT OpenCourseWare 6.00 Introduction to Computer Science and Programming: Lesson 1, HW 1
#Problem Set 0
#Name: Lowe
#Time : 2 minutes
#Problem 1
#Write a program that does the following in order:
#1. Asks the user to enter his/her last name.
#2. Asks the user to enter his/her first name.
#3. Prints out the user's first and last names in that order.
print ("What is your last name?")
last_name = raw_input()
print ("What is your first name?")
first_name = raw_input()
print last_name, first_name
philliplowe
6 months ago