#include<iostream>
#include<algorithm>
using namespace std;
int main(){
int n;
while(cin >> n){
int s[n];
for(int i=0;i<n;i++){
cin >> s[i];
}
sort(s,s+n);
自己想如何output
cout << endl;
}
}