#Title: Collect User Name #Author: Aidan McGreal #date:20/11/2025 #Version: 1 #purpose: Ask for the users name and then greets them unless they dont have a name name = input('What is your name? ') if name == '': print('No name entered') else: print(f'Welcome {name}') print('The program has ended')