#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
int z = 0;
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= i; j++)
{
putchar((z++) % 26 + 65);
}
cout << endl;
}
return 0;
}