n=int(input()) A=list(map(int,input().split(" "))) a=A.sorted() N=n//2 if n%2==0: med=(a[N]+a[N-1])/2 else: print(a[N])