#Title: Collect user name #Author: Gurshan Singh #Date: 27/11/25 #Version:version 2 #Purpose:To collect and store the users name and display welcome message using the name. If no name eentered it will display another messgae name = input("What is your name?") if name == "": print("No name entered") else: print ( f"Welcome {name}") print ("The program has ended")