#include int main() { int i, j; for(i=0; i<=4; i++) { for(j=0; j<=i; j++) { printf("%c",'A' + i); } printf("\n"); } return 0; }