diff --git a/archives/01-introduction-to-computer-science-and-programming/archives/UNIT-01/02-core-elements-of-a-program/ps0.py b/archives/01-introduction-to-computer-science-and-programming/archives/UNIT-01/02-core-elements-of-a-program/ps0.py index 09b2a9f..445d309 100644 --- a/archives/01-introduction-to-computer-science-and-programming/archives/UNIT-01/02-core-elements-of-a-program/ps0.py +++ b/archives/01-introduction-to-computer-science-and-programming/archives/UNIT-01/02-core-elements-of-a-program/ps0.py @@ -3,6 +3,6 @@ # Time Spent: 3:10 birthday = raw_input('When is your birthday?\n') -lastName = raw_input('What is yout last name?\n') +lastName = raw_input('What is your last name?\n') print lastName + ' ' + birthday