(define fibo (n) (let ((helper (lambdarec rec (m a b) (if (= m n) b (rec m b (+ a b)))))) (if (<= n 0) 0 (if (<= n 2) 1 (helper 2 1 1)))))