dev/python/akk.py

7 lines
116 B
Python

def akk(m,n):
if m==0: return n+1
if n==0: return akk(m-1,1)
return akk(m-1,akk(m,n-1))
print akk(3,8)