#include <stdio.h>

int main(void){
#if 1
    printf("hoge\n");
	#if 0
		printf("fuga\n");
	#endif
	printf("piyo\n");
#endif
}