#include <bits/stdc++.h> using namespace std; int main(){ int a,b=0; scanf("%d",&a); for(int i=0;i<a;i++){ for(int j=0;j<=i;j++){ printf("%d",b%26+65); b++; } printf("\n"); } return 0; }