(defun main (&rest argv) (declare (ignorable argv)) (let* ((s (read-line)) (n (length s))) (format t "~a~%" (if (= 2 n) "Yes" "No")))) (main)