(defun main (&rest argv) (declare (ignorable argv)) (let* ((n (read))) (format t "~d~%" (if (minusp n) 0 (floor n 100))))) (main)