Rest

Rest[expr] returns all but the first part of expr.

Attributes[Rest] := {Protected}

Simple examples

In[1]:= Rest[{1, 5, 6}]
Out[1]= {5, 6}
In[2]:= Rest[a + b + c]
Out[2]= b + c