a=input().split( )
b=list(a)
del b[0]
print(b)

del没学过 尝试了好多种 原来是 del x[1:2]之类的