https://www.acmicpc.net/problem/11004
입력받은 수를 배열에 입력한 뒤 정렬한다. index로 K번째 있는 수를 출력한다.
from sys import stdin input = stdin.readline n, k = map(int,input().split()) array = list(map(int,input().split())) array.sort() print(array[k-1])