list_ = ['Allen']
a = input().split(' ')
for i in a:
    list_.append(i)
print(list_)