#include
using namespace std;
int main(){
int n;
int s[n];
cin >> n;
for (int i = 0; i < n; i++){
cin >> s;
}
for (int i = 0; i < n; i++){
for (int j = 0; j < n-1; j++){
if (s[j] > s[j + 1]){
int t = s[j];
s[j] = s[j + 1];
s[j + 1] = t;
}
}
}
for (int i = 0; i < n; i++){
cout
using namespace std;
int main(){
int n;
int s[n];
cin >> n;
for (int i = 0; i < n; i++){
cin >> s;
}
for (int i = 0; i < n; i++){
for (int j = 0; j < n-1; j++){
if (s[j] > s[j + 1]){
int t = s[j];
s[j] = s[j + 1];
s[j + 1] = t;
}
}
}
for (int i = 0; i < n; i++){
cout