0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 13:05:25 +00:00
OI-codes/Luogu/problem/P2369/P2369.cpp

16 lines
270 B
C++
Raw Normal View History

2020-11-01 12:36:16 +00:00
#include <bits/stdc++.h>
using namespace std;
int main() {
short a[1000005];
int n, m;
cin >> n >> m;
for (int i = 0; i < n; i++) {
cin >> a[i];
}
sort(a, a + n);
for (int i = 0; i < m; i++) {
cout << a[i] << endl;
}
}