Problem M: 一维-统计大于平均值的元素个数

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:1 Solved:1

Description

输入n个整数,统计有多少个元素大于平均值。

Input

第一行输入整数n(1≤n≤100) 第二行输入n个整数,用空格分隔

Output

输出一个整数,表示个数

Sample Input Copy

5
1 2 3 4 5

Sample Output Copy

2

HINT

1≤n≤100