Joe has exactly birds, who he loves very much. Joe loves his birds so much that he decided to enter them into a bird flying competition. However, to register a bird into the competition, it must have a minimum flying height of . Each bird has a maximum flying height of . Help Joe determine how many birds he is able to enter into the bird flying competition.
Input Specification
The first line of input contains two integers and .
The next lines will each contain a single integer .
Output Specification
Output one line, the total number of birds Joe is can enter into the competition.
Sample Input
10 15
20
4
2
15
8
23
26
2
10
32
Sample Output
5
Comments