h,m=input().split(":") h=int(h) m=int(m)+5 if m>=60: h+=1 m-=60 if h>=24: h=0 print("{0:02d}:{1:02d}".format(h,m))