(defun main (&rest argv) (declare (ignorable argv)) (let* ((n (read))) (format t "~d~%" (floor (* 3 n) 2)))) (main)