include <stdio.h>


int main() {

for(int i=0; i<10; i++) {

for(int j=0; j<i; j++){

printf("*");

}

printf("\n");

}

return 0;

}


별피라미드 공격!