0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 08:25:24 +00:00
OI-codes/problem/P1271/P1271.cpp
2020-09-23 20:39:52 +08:00

20 lines
303 B
C++

// R38787626
#include<bits/stdc++.h>
using namespace std;
int main() {
int n, m, a[2000005];
cin >> n >> m;
for(int i = 0 ; i < m ; i++) {
cin >> a[i];
}
sort(a, a+m);
for(int i = 0 ; i < m ; i++) {
cout << a[i] << ' ';
}
cout << endl;
return 0;
}