#include <stdlib.h>
#include <stdio.h>

void check(int depth) {
    printf("\n%d\n",depth);
    if (depth == 0) return;
    check(depth-1);
}

int main() {
	printf("h");
    check(3);
    return 0;
}