PROGRAMMING:We love sports
Xiao Ming and Xiao Hong like sports very much. Once Xiao Ming and Xiao Hong took part in the school's 50 meter sprint competition. There were n (2 < = n < = 30000) students in the competition. Xiao Ming was No. a (1 < = a < = n), and Xiao Hong was No. B (1 < = B < = n). Because they were too focused on running, they didn't know who they were in the final race, only knew everyone's final result, Smart, can you help them?
###Input format:
The first line n, a, B, represents the number of participants n, Xiaoming number a and Xiaohong number B;
The number of N in the second line, x1, X2,..., xn, corresponds to the results of each player.
###Output format:
Output the ranking of Xiaoming and Xiaohong, separated by 1 space.
###Input sample 1:
```in
10 1 10
1 4 5 6 1 2 3 7 8 9
```
###Output sample 1:
```out
1 10
```
###Input sample 2:
```in
4 1 3
1 2 3.0 2
```
###Output sample 2:
```out
1 4
```
answer:If there is no answer, please comment
###Input format:
The first line n, a, B, represents the number of participants n, Xiaoming number a and Xiaohong number B;
The number of N in the second line, x1, X2,..., xn, corresponds to the results of each player.
###Output format:
Output the ranking of Xiaoming and Xiaohong, separated by 1 space.
###Input sample 1:
```in
10 1 10
1 4 5 6 1 2 3 7 8 9
```
###Output sample 1:
```out
1 10
```
###Input sample 2:
```in
4 1 3
1 2 3.0 2
```
###Output sample 2:
```out
1 4
```
answer:If there is no answer, please comment