a=int(input()) x=int((6/10)*a) h=int(x // 60 + 10) m=x % 60 print(str(h)+":"+str(m).zfill(2))