local math = require 'math' local i, f = math.modf(tonumber(io.stdin:read("*l"))/100) print(string.format("%d:%02.0f", i+10, f*60))