import math a=int(input()) b=a/100 c=math.floor(b) d=int((b-c)*60) if(d<10): print(str(10+c)+':0'+str(d)) else: print(str(10+c)+':'+str(d))