#include <iostream>
#include <set>
using namespace std;

int main() {
    int n,k;
    while(cin>>n){
        int a;
        set<int> st;
        for(int i=0;i<n;i++){
            cin>>a;
            st.insert(a);
        }
        cin>>k;
        int count=0;
        //set只能通过迭代器去访问
        set<int>::iterator it;
        for(it=st.begin();it!=st.end();it++){
             count++;
             if(count==k) cout<<*it<<endl;
        }
    }
    return 0;
}