Problem X: Alphabetization

Write a program that prints exactly the sample output shown below. There is no input.

Sample Input

none

Sample Output

The quick brown fox jumps over the laxy dog.

Problem Y: Rank

John Q. Public wants to know his rank in the class. The professor has posted a list of student numbers and marks. Compute J.Q.'s rank in class; that is, if he has the top mark (or is tied for the top mark) his rank is 1; if he has the second best mark (or is tied) his rank is 2, and so on.

Input

The input consists of several test cases. Each case begins with J.Q.'s student number, an integer between 1000000 and 9999999. Following the student number are a number of lines, each containing a student number between 1000000 and 9999999 and a mark between 0 and 100. A line with a student number and mark of 0 terminates each test case. There are no more than 1000 students in the class, and each has a unique student number.

Output

For each test case, output a line giving Johnny's rank in the class.

Sample Input

1234567
1212121 100
1234567 33
2222222 22
9898765 33
0 0
1234567
1212121 100
1234567 22
2222222 33
9898765 33
0 0

Output for Sample Input

2
4