0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 14:45:24 +00:00
OI-codes/problem/P1271/P1271.cpp

20 lines
303 B
C++
Raw Normal View History

// 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;
}