s = input().split(" ")
lst = []
for i in s:
    lst.append(i)
for i in range(3):
    lst.pop()
print(lst)