a = int(input()) t = a / 100 * 60 h = int(t // 60) m = int(t - h * 60) print(str(h+10) + ':' + '{:0=2}'.format(m))