#include <stdio.h>

void func(){
	printf("#\n");
	printf("##\n");
	printf("###\n");
	printf("####\n");
}
int main(void) {
	func();
	return 0;
}
