PROGRAMMING:The k-th largest integer**
Find the largest integer in $$n $$integers.
####Input format
>$$n $$and $$k$$
>$$n $$integers
####Output format
>The integer with the largest $$k $$
####Input sample
```in
10 3
2 5 -1 9 25 0 12 4 -7 12
```
####Output sample
```out
twelve
```
answer:If there is no answer, please comment
####Input format
>$$n $$and $$k$$
>$$n $$integers
####Output format
>The integer with the largest $$k $$
####Input sample
```in
10 3
2 5 -1 9 25 0 12 4 -7 12
```
####Output sample
```out
twelve
```
answer:If there is no answer, please comment