#include <stdio.h>

int i = 0;

int main(void) {
	// your code goes here
	hoge();
	return 0;
}

int hoge(){
	i++;
	if(i <= 2){
		printf("%d\n", i);
		main();
	}
}
