H,M = map(int,input().split(":")) H2 = (H*60+M+5)%1440//60 M2 = (H*60+M+5)%1440%60 H2 = "0"+str(H2) if len(str(H2)) == 1 else str(H2) M2 = "0"+str(M2) if len(str(M2)) == 1 else str(M2) print(H2+":"+M2)