PROGRAMMING:Statistical score 3
Given the basic information of n students, including student number (a string composed of 12 digits), name (a non empty string less than 20 in length that does not contain white space characters), advanced mathematics score and C language programming score, the scores are all integers in the [0100] range, it is required to count the number of students who fail in C language programming, According to the input order, the list of students who failed in C programming is given.
###Input format:
The input gives a positive integer n (≤ 10) on one line.
Then n lines, each line gives a student's information, the format is "student number name advanced mathematics score C language programming score", separated by a space.
###Output format:
First, output the number of C language program design failure in one line, and then output the student number and name of a failure student in each line according to the input order, with a space between them.
###Input example:
```in
three
201410300106 wanyun 70 88
201618050322 zhangyu 60 59
201509210118 lixiao 80 80
```
###Output example:
```out
one
201618050322 zhangyu
```
answer:If there is no answer, please comment
###Input format:
The input gives a positive integer n (≤ 10) on one line.
Then n lines, each line gives a student's information, the format is "student number name advanced mathematics score C language programming score", separated by a space.
###Output format:
First, output the number of C language program design failure in one line, and then output the student number and name of a failure student in each line according to the input order, with a space between them.
###Input example:
```in
three
201410300106 wanyun 70 88
201618050322 zhangyu 60 59
201509210118 lixiao 80 80
```
###Output example:
```out
one
201618050322 zhangyu
```
answer:If there is no answer, please comment