Sample Input:
10 (Number of elements of the array)
5 (Kth smallest element to be found)
1 2 7 8 9 3 4 5 6 0 (Array elements)
Sample Output:
4
@@coding::1@@