how to sort numbers

I have files like this:

1
3
4
6
14
3
6

I want to extract the highest number. I have tried using

cat filename | sort

but then 9 would become higher than 14.

So how do I sort?

Try sort with the -n option.