def f(x,k,j):
    try:
        print()
        x(f,k+1,j)
    except:
        print(k+j)
        pass
    
    return (f,0,k)

k,o,p = f(f,0,0)
f(k,o,p)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: