# Title: name # Author: Josh waghorn # Date: 18/11/25 # Version: 1.00 # Purpose: to greet you using the name that is given or if no name is entered then say that no name was entered name = input("What is your name? ") if name == "": print("No name entered") else: print(f"Welcome {name}") print("The program has ended")