#include <stdio.h>
int main() {
	int i,j;
	i=1;
	goto starsi_cond;
starsi_loop:
		j=0;
		goto starsj_cond;
starsj_loop:
			printf("*");
			j++;
starsj_cond:
			if (j<i) goto starsj_loop;
			printf("\n");
		i++;
starsi_cond:
	if (i<10) goto starsi_loop;
}