include <stdio.h> main(){ int n = 3;int i, j;for (i = 0; i < n; i++){ for (j = 0; j <= i * 2; j++){ printf("%c", 97 + i + j);} printf("\n");} }