#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
while (cin >> n){
vector<int> a(n);
for (int i=0; i<n; i++){
scanf("%d", &a[i]);
}
sort(a.begin(), a.end());
for (auto item:a){
printf("%d ", item);
}
puts("");
}
return 0;
}



京公网安备 11010502036488号