(defun nth-it (n l) (cond ((null l) nil) ((eq n 1) (car l)) (t (nth-it (- n 1) (cdr l)))))