a = int(input()) h = 10 + (a // 100) m = str((a % 100) * 60 // 100) print(f"{h}:{m.zfill(2)}")