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