{"raw_statement":[{"iden":"problem statement","content":"$N$ students took an exam. The students are labeled as Student $1$, Student $2$, $\\dots$, Student $N$, and Student $i$ scored $a_i$ points.\nA student who scored less than $P$ points are considered to have failed the exam and cannot earn the credit. Find the number of students who failed the exam."},{"iden":"constraints","content":"*   $1 \\leq N \\leq 10^5$\n*   $1 \\leq P \\leq 100$\n*   $0 \\leq a_i \\leq 100$ $(1 \\leq i \\leq N)$\n*   All values in input are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$ $P$\n$a_1$ $a_2$ $\\dots$ $a_N$"},{"iden":"sample input 1","content":"4 50\n80 60 40 0"},{"iden":"sample output 1","content":"2\n\nStudents $1$ and $2$, who scored $80$ and $60$ points, respectively, succeeded in scoring at least $50$ points to earn the credit.  \nOn the other hand, Students $3$ and $4$, who scored $40$ and $0$ points, respectively, fell below $50$ points and failed the exam. Thus, the answer is $2$."},{"iden":"sample input 2","content":"3 90\n89 89 89"},{"iden":"sample output 2","content":"3"},{"iden":"sample input 3","content":"2 22\n6 37"},{"iden":"sample output 3","content":"1"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}