s=input()
list=[]
for i in s.split():
    list.append(i)
    
list.remove(list[0])
print(list)