N = int(input()) L = list(map(int, input().split())) d = {} for i in L: if not i in d: d[i] = 1 else: d[i] += 1 print(max(d))