#include <bits/stdc++.h>
using namespace std;
int n, m;
vector<int> chosen;
void get_combination(int u, int last)
{
if (u == m){
for (int i = 0; i < m; i++) printf("%d ", chosen[i]);
puts("");
}
for (int j = last + 1; j <= n; j++){
chosen.push_back(j);
get_combination(u + 1, j);
chosen.pop_back();
}
}
int main()
{
cin >> n >> m;
get_combination(0, 0);
return 0;
}