diff --git a/challenges/1.3.Input/main.py b/challenges/1.3.Input/main.py index 3e53486..79eb58c 100644 --- a/challenges/1.3.Input/main.py +++ b/challenges/1.3.Input/main.py @@ -1,12 +1,12 @@ ### Modify the code below ### #Ask the user for their name! -Name = '' +name = '' #Ask the user for their age! -Age = '' +age = '' -print(Name) -print(Age) +print(name) +print(age) ### Modify the code above ###