def f(depth):
    if depth > 100:
        print("runaway recursion???")
        raise SystemExit
    f(depth + 1)

f(0)
