Problem2793--有多少个两位数

2793: 有多少个两位数

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

Description

输入 n 个整数,统计其中有多少个两位数。

注:最小的两位数是 10,最大的两位数是 99。

Input

第一行,一个整数 n(1 ≤ n ≤ 1000)。  

第二行,n 个整数。每个整数均为不超过 1000 的正整数。  

Output

输出一个整数,表示有多少个数是两位数。  

Sample Input Copy

5
23 5 123 89 365

Sample Output Copy

2

Source/Category