#include <stdio.h>

#define repeat(count) for(int _repeat_##__LINE__ = 0; _repeat_##__LINE__ < (count); _repeat_##__LINE__++)

int main() {
	repeat(2) {
		repeat(3) {
			printf("hello\n");
		}
	}
	return 0;
}