Problem2567--max

2567: max

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 0  Solved: 0
[Status] [Submit] [Creator:]

Description

输入n个数,输出其中最多有多少个数是相同的。

Input

第一行为一个整数n ( 1 ≤n ≤100 ) , 第二行为n个整数a。(1<=a<=10000,整数间用空格隔开)

Output

一个整数,表示其中最多相同的数的个数。

Sample Input Copy

6 
1 2 4 3 3 2 

Sample Output Copy

2

Source/Category