题目描述
Given n integer numbers, you should select the m numbers of the bigger ones and output them from big one to small one.
输入
The input file contains many test cases.
Each case has 2 lines.
The first line consists of 2 integer number n and m ( 0 < n, m < 1000000).
The next line has n numbers, and all numbers between -500000 and -500000.
输出
For each case, you should output the m integer numbers, order by descent.
提示
If n=10 m=3
and the 10 numbers are:
10 9 10 8 7 6 5 4 1 2
you should output:
10 10 9