# https://www.globalsino.com/ICs/
# Limit the number of actions

NameList = []
while True:
    print("Enter the names of Member " + str(len(NameList) + 1) + " (Or click 'Enter' to stop.):")
    name = input()
    if name == '':
        break
    # list concatenation
    NameList = NameList + [name] 
print('The names are:')
for name in NameList:
    print(' ' + name)
