#abc142b. [abc142_b]Roller Coaster

[abc142_b]Roller Coaster

Problem Statement

NN friends of Takahashi has come to a theme park.

To ride the most popular roller coaster in the park, you must be at least KK centimeters tall.

The ii-th friend is hih_i centimeters tall.

How many of the Takahashi's friends can ride the roller coaster?

Constraints

  • 1leNle1051 \\le N \\le 10^5
  • 1leKle5001 \\le K \\le 500
  • 1lehile5001 \\le h_i \\le 500
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN KK h1h_1 h2h_2 ldots\\ldots hNh_N

Output

Print the number of people among the Takahashi's friends who can ride the roller coaster.


Sample Input 1

4 150
150 140 100 200

Sample Output 1

2

Two of them can ride the roller coaster: the first and fourth friends.


Sample Input 2

1 500
499

Sample Output 2

0

Sample Input 3

5 1
100 200 300 400 500

Sample Output 3

5