#Title: What is your name? #Author: Dima Bykov #Date: 19/11/2025 #Version: 1 #Purpose: To welcome the user name = input("What is your name? ") if name == "" or name == " ": print("No name entered") print("The program has ended.") else: print(f"Welcome {name}") print("The program has ended.")