import java.util.*; public class Solution { public int findKth(int[] a, int n, int K) { // write code here Arrays.sort(a); return a[n-K]; } }