(define (mystery x)
   (cond ((or (= x 0) (= x 1)) 1)
         (else (+ (mystery (- x 1)) (mystery (- x 2))))))

(mystery 5)