Filter elements of sub-lists in a parent list

Hi Everyone,
I one again have a problem that need your help.
If I have sub-lists of a parent list (Ex. { {1 3}, {4 6}, {7 0 1}, {8 2 9 0} }), how can I do to get only the first two elements of every sub-lists? (The results after filter should be { {1 3}, {4 6}, {7 0}, {8 2} } )
Thank you very much for any constructive comment and suggestion.

Hello, here you go:

Got it! Thank you very much, Vikram_Subbaiah and Einar_Raknes