V = int(input()) hr = int(V / 100 * 60 // 60 + 10) mn = int(V / 100 * 60 % 60) print(str(hr) + ':' + str(mn))