#include<iostream>
using namespace std;
const int N = 1e4 + 5, M = 1e4 + 5;
int a[N];
int n;
void show()
{
for(int i = 1; i <= n; i++)
cout << a[i] << ' ';
}
int cnt[M];
void countingSort()
{
for(int i = 1; i <= n; i++)
cnt[a[i]]++;
for(int i = 1, j = 0; j < M; j++)
for(int k = 0; k < cnt[j]; k++)
a[i++] = j;
}
int main()
{
cin >> n;
for(int i = 1; i <= n; i++)
cin >> a[i];
countingSort();
show();
return 0;
}