diff --git a/test.py b/test.py index 09a8528..86b6f27 100644 --- a/test.py +++ b/test.py @@ -4,17 +4,17 @@ Before running this program, please fix the three minor issues :) After a successful run, please submit a pull request! ''' -print('ichangendfit') + def read_input(): # Please allow the user to enter their first and last name from the terminal # Hint: We call this a raw input - first_name = ; - last_name = ; + first_name = input(); + last_name = input(); # Please fix the following print statement - 'Welcome %s %s'%(first_name,last_name) + print('Welcome %s %s'%(first_name,last_name)) - #Supply the approriate return (We aren't actually returning anything :) ) + #Supply the appropriate return (We aren't actually returning anything :) ) return -read_input() +read_input() \ No newline at end of file