var fib = proc(n) if (n < 2) :result = 1 else :result = fib(n-1) + fib(n-2) ; print (fib(37));