# Title: Collect User Name # Author: Prabhas bokka # Date: 20/11/25 # Version: 1.1 # Purpose: Ask for user's name and if the name is entered it will greet them with their name or it says no name entered name = input ("What is your name? ") if name == "": print("No name entered") elif name == name: print(f'Welcome {name}') print("The program has ended")