pythonimport sys sys.setrecursionlimit(10**6) def foo(x): if x == 0: return 0 return foo(x - 1) print(foo(10 ** 6 - 10))