Problem D: 考试成绩的简单统计

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

Description

期末考试结束,王老师想知道这次考试中成绩优秀的同学有多少人(考试成绩大于或等于 90 表示成绩优秀),请你编程帮助王老师来计算出成绩优秀的人数。

Input

第一行,一个整数 n 代表有  n 个人的成绩( n≤100); 

第二行,  n个人的成绩,用空格隔开。

Output

成绩优秀的同学的总人数。

Sample Input Copy

5
98 88 85 99 90

Sample Output Copy

3