If you don't mind that the output is sorted:
sort -u -k1,2 file
-u
- unique-k1,2
- use fields 1 and 2 together as the key
If you don't mind that the output is sorted:
sort -u -k1,2 file
-u
- unique-k1,2
- use fields 1 and 2 together as the key