# -*- coding:utf-8 -*-
class Solution:
def findKth(self, a, n, K):
# write code here
a.sort(reverse=True)
return a[K-1]
# -*- coding:utf-8 -*-
class Solution:
def findKth(self, a, n, K):
# write code here
a.sort(reverse=True)
return a[K-1]