(defun main (&rest argv)
  (declare (ignorable argv))
  (format t "~a~%" (if (/= 1 (read)) "YES" "NO")))

(main)