#include <stdio.h>

int main(void) {
	int i, n;
	n = 3;
	
	char c = '#';
	for (i = 0; i < n; i++)
	{
		printf("%c\n", c);
	}
}
