n=int(input()) def T(x): t=x*60/100 h=int(t//60) m=int(t%60) if len(str(m))==1: m='0'+str(m) return f'{10+h}:{m}' print(T(n))