Ok, NOW an Ackermann function. I forgot to stage changes.

This commit is contained in:
maxneedspats 2022-06-02 16:41:09 -05:00
parent f61042cb8a
commit 6d6dd6cf9d

View file

@ -9,7 +9,7 @@ def ackermann(m, n):
# Sets much higher recursion limit
import sys
sys.setrecursionlimit(2000)
sys.setrecursionlimit(10000)
# Main part, input and print
num1 = int(input("Input m: "))