How to print file without few exactly matching lines?

Hi I have a very long file with 4 columns of numbers for example
1875 1876 12725 12723
13785 13786 4232 4230
13184 13185 2920 2918
5943 5944 8232 8230
17198 17199 9575 9573
5216 5217 16848 16846
4510 4511 11552 11550
How can I print the file using AWK/GREP without the lines '1875 1876 12725 12723' and '5943 5944 8232 8230'? The above example is a short version of what I want to do.....I need to print without some 60 lines from a file having 35000 lines

I know it can be done with line numbers but since the file is long, I want to put in the exact lines and want to print the file without these exact lines? Please help.
:confused:

Perhaps like...

grep -Ev "1875 1876 12725 12723|5943 5944 8232 8230" input_file

If you have a lot of lines to exclude, put them in a separate file, then

grep -vf exclude_file input_file

Thanks Scottn, the second code worked fine for me....
Your 1st code is correct but my file has more spaces in between the numbers and then I have to put the exact number of spaces.
So putting the lines into an exclude file worked out for me.:slight_smile: