#include<stdio.h>int main(){ int i,j,k; for(i=0;i<128;i++) { if(i=='A') for(j=0;j<=5;j++) { for(k=0;k<=j;k++) printf("%c",i++); printf(" "); } }}