#Title: What is your name? #Author: Keegan Downey #Date: 18/11/2025 #Version: 1 #Purpose: ask the name of the user then welcome them name = input("What is your name? ") if name == "": print("No name entered") else: print(f"Welcome {name}") print("The program has ended")