#include <stdio.h>

int main(void) {
	int i,j;
	j=1;
	for(i=1;i<=10;i++){
		printf("\n");
		while(j<=10){
			printf("#");
			j++;
			
		}
	
	}
}
