T=raw_input() a=int(T[0:2]) b=int(T[3:5]) b+=5 if b>=60: a+=1 b-=60 if a>=24: a-=24 print '%s'%str(a).zfill(2) + ':' + '%s'%str(b).zfill(2)