; 2017から与えられた数を引く (defun main (&rest argv) (declare (ignorable argv)) (let* ((n (read))) (princ (- 2017 n)) (terpri))) (main)