from collections import Counter n, m, t = map(int, input().split()) a = list(map(int, input().split())) print(max(Counter(a).values()))