User:Milanand/Python 3 Programming/Variables and Strings/Solution

From Wikibooks, open books for an open world
Jump to navigation Jump to search
# Solution to Exercise 1
#
print('Enter your last name:')
last_name = input('**')
print('Enter your first name:')
first_name = input('**')
print(first_name)
print(last_name)