#include <stdio.h>

int f(void){
	return f();
}

int main(void){
#ifdef MAIN
	return main();
#else
	return f();
#endif
}

