#include <stdio.h>

int main(void) {
	int i;
	for (i = 0 ; i < 11 ; i++) 
		printf("%.*s\n", i+1, "***********" + i);
	return 0;
}