Get un common numbers from two files

Hi,
I have two files:

abc :

50040
123123
31703

cde:

104
97
50040
123123
31703
36609
50534

How to get all the numbers from cde which are not in abc?

result must be :
104
97
36609
50534

Thanks for your help.
Jingi

sort the files in ascending order then use comm

sort -o abc.srt abc
sort -o cde.srt cde
comm -13 abc.srt cde.srt > resultfile

grep -vf abc cde

Above one works with /usr/xpg4/bin/grep not with
/usr/xpg4/bin/grep -vf a b
Not this one /usr/bin/grep

Thought will save soe time to others as I went through man to figure this out