Problem Z: 第k小整数

Problem Z: 第k小整数

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

现有 $n$ 个正整数,求出这 $n$ 个正整数中的第 $k$ 个最小整数(相同大小的整数只计算一次)。

Input

第一行为 $n, k$;
第二行开始为 $n$ 个正整数的值,整数间用空格隔开。

Output

第 $k$ 个最小整数的值;若无解,则输出“NO RESULT”。

Constraints

$n ≤ 10,000$
$k ≤ 1,000$
正整数均小于 $30,000$

Sample 1 Input

10 3
1 3 3 7 2 5 1 2 4 6

Sample 1 Output

3