#include <stdio.h>

int main(void) {
	int t=1,i=0;
	do{
		i=i+1;
		if(i==10){
			t=0;
		}
		printf("#");
	}while(t);
	return 0;
}
