4 lines
271 B
Python
4 lines
271 B
Python
# 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 |