(defun fib(n)
  (if(or (eq n 0) (eq n 1))
    (return-from fib n))
  (return-from fib (+ (fib (- n 1)) (fib (- n 2)))))
(print (fib 10))