/**
* author: wxhtzdy
* created: 26.06.2022 12:23:35
**/
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int a, b;
cin >> a >> b;
vector<vector<char>> s;
for (char i = 'a'; i <= 'z'; i++) {
for (char j = 'a'; j <= 'z'; j++) {
for (char k = 'a'; k <= 'z'; k++) {
for (char p = 'a'; p <= 'z'; p++) {
for (char q = 'a'; q <= 'z'; q++) {
s.push_back({i, j, k, p, q});
}
}
}
}
}
function<void(vector<char>)> Print = [&](vector<char> c) {
for (int i = 0; i < 5; i++) {
cout << c[i];
}
cout << " ";
};
while (b--) {
Print(s.back());
s.pop_back();
}
return 0;
}