(let ((pos (position 5 numbers)))
  ;; pos is the position index of the number 5
  ;; in the sequence numbers, or () if not found.
  (if pos
      (print pos)
      (print "Number 5 not found!")))