Simple Python program to greet the user Prompt the user to enter their name name = input("Enter your name: ") Print a greeting message print(f"Hello, {name}! Welcome to the program.") test