s = input().lower() s = s.replace(' ','') m = max(map(lambda x: s.count(x), s)) n = sorted(set(filter(lambda x: s.count(x) == m, s)))[0] print(f'{n} - {m} раз')