# 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