
(define fib (n) 
  (define (fiba n a b) 
       (if (= n 0) a (fiba (- n 1) b (+ a b))))
  (fiba n 0 1)
)
