# Enter your code here. Read input from STDIN. Print output to STDOUT import collections n=input() L=collections.Counter(raw_input().strip().split()) print(max(L.values()))