(defun main (&rest argv) (declare (ignorable argv)) (format t "~a~%" (if (zerop (mod (read) 6)) "Yes" "No"))) (main)