#include<bits/stdc++.h>
using namespace std;
const int N = 1e5 + 10;
int a[N];
int main()
{
cin.tie(0);
cout.tie(0);
ios::sync_with_stdio(false); // 提高cin的读取速度
int i,n;
cin >> n;
for(i = 0 ; i < n; i ++) cin >> a[i];
sort(a,a + n);
for(i = 0 ; i < n ; i ++) cout << a[i] << ' ';
return 0;
}
注意:
ios::sync_with_stdio(false)
要写在main()函数里面,不能当全局用