#include <limits.h>

void recur(unsigned long long depth)
{
  recur(depth - 1);
}

void main()
{
  recur(ULLONG_MAX);
}