diff --git a/helloworld.py b/helloworld.py index 3cb07e8..3cf92b6 100644 --- a/helloworld.py +++ b/helloworld.py @@ -1,3 +1,4 @@ -name = input("Enter your name: ") -age = input("Enter your age: ") -print("Hello World", name, "you are", age, "years old") \ No newline at end of file +# This program greets the user with their name and age +name = input("Enter your name: ") # Ask for the user's name +age = input("Enter your age: ") # Ask for the user's age +print("Hello World", name, "you are", age, "years old") # Display the greeting with name and age \ No newline at end of file