# coding: utf-8 # hello worldと表示する # coding: utf-8 # hello worldと表示する import math N = int(input())/100 s = math.floor(N) t = int((N*10-s*10)*6) if 0<= t <=9: tt = "0"+str(t) else: tt=str(t) print(str(10+s)+":"+tt)