#Title: User Data #Author: Varun Merai #Date: 17/06/2025 #Version: Version 1 #Purpose:Asking user for his name and welcoming him to the program name = input('What is your name?') if name =="": print('No name entered') else: print(f'Welcome {name}') print('The program has ended')