fib := fn(x) { if (x < 2) { return x } return fib(x-1) + fib(x-2) } N := 35 if (len(args()) == 1) { N = int(args()[0]) } print(fib(N))