#Title: Welcome message #Author: Ayvah #Date: 4th of June 2026 #Version: 1 #Purpose: Ask for a name then repeats the name in a welcome message. # Repeat welcome message name = input('What is your name? ') for (i) in range (5): print(f'Malo {name}') print('The program has ended')