h,m=map(int,input().split(':')) m+=5 h+=m//60 h%=24 m%=60 print(('','0')[h<10]+str(h)+':'+('','0')[m<10]+str(m))