왜 리습은 안만져보고 욕부터 하냐구
(defun range (start end res)
  (if (eq start end) (cons start res)
    (range (inc start) end (cons start res))))