list1 = input() #新建一个列表,输入字符串
list2 = list1.split(" ") #字符串以空格间隔
list2.insert(0,"Allen")#插入Allen至首位
print(list2)