405A

C++ implementation © 2026 Pedro Luis D.

View on Codeforces Logo
405A.cpp
#include 
using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int n; cin >> n;
    vector v(n);
    for (int i=0; i < n; i++){
        cin >> v[i];
    }

    sort(v.begin(), v.end());

    for (int i=0; i < n; i++){
        cout << v[i];
        if (i == n-1){
            cout << "\n";
        } else {
            cout << " ";
        }
    }

    return 0;
}