a = int(input()) // 10 m = a * 6 p = str(m % 60) if len(p) == 1: p = '0' + p print(str(10 + m // 60) + ":" + p)