from collections import Counter n = int(input().strip()) c = Counter(list(map(int, input().strip().split()))[:n]) print(max(c.values()))