a=int(input()) minute=a/100*60 h=minute//60 m='{:.0f}'.format(minute%60) hh='{:.0f}'.format(10+h) mm=str(m).rjust(2, '0') print(str(hh)+':'+mm)