a = int(input().strip()) h = (10 + a // 100) % 24 m = int(((a % 100) / 100.0) * 60) print('{:02}:{:02}'.format(h, m))