#include"bits/stdc++.h" using namespace std; int main() { int n; cin >> n; vector a(n); bool j; for (int i = 0; i < n; i++)cin >> a[i]; sort(a.begin(), a.end()); for (int i = 0; i < n; i++)cout << a[i] << ' '; cout << endl; }