h,m=map(int,input().split(':')) m+=5 if m>60: m-=60 h+=1 if h>23: h=0 hh=str(h).zfill(2) mm=str(m).zfill(2) print(hh+':'+mm)