#A1011. 简单排序
简单排序
背景
呜呜呜,原题太难了,被骂力,这题就出一道简单排序吧。
题目描述
就是给一串数据让你排序呗。
Format
Input
输入包括两行,第一行包括一个整数 n ,第二行包括 n 个整数,表示 n 个待排序的数据。
Output
输出包括一行,n 个从大到小排序后的数据串。
Samples
10
100 200 150 140 129 134 167 198 200 111
200 200 198 167 150 140 134 129 111 100
Limitation
对于100%的数据,1<=n<=10000,所有数在int范围内。