(defun solve (a) ( format t "~A~A~2,'0d~%" (+ 10(floor (* (/ a 5) 3) 60)) ":" (rem (* (/ a 5) 3) 60)) ) (solve (read))