Sort based on numbers

I have a file which has the following data :-

how can I sort the data in descending order .

My files may have the first column with 1 to 10000 numbers .I need to arrange them in descending order .

Thanks

sort -k 1rn,2 inputfile

will produce the desired output.

sort -nrk1 file