s = input().split(" ")
lst = []
for i in s:
    lst.append(i)
lst.insert(0, "Allen")
print(lst)