F fib(n) F f(Int n) -> Int I n < 2 R n R @f(n - 1) + @f(n - 2) R f(n) L(i) 0..20 print(fib(i), end' ‘ ’)