import java.util.*;
public class Solution {
public int findKth(int[] a, int n, int K) {
// write code here
for(int i=0;i<n;i++){
for(int j=i+1;j<n;j++){
if(a[i]<a[j]){
int x=a[i];
a[i]=a[j];
a[j]=x;
}
}
}
return a[K-1];
// write code here
// Arrays.sort(a);
// int count = 0;
// int result = 0;
// for(int i=n;i>0;i--,count++){
// if(count==K){
// result = a[i];
// }
// }
// return result;
}
}