N=int(input()) A=sorted(list(map(int,input().split()))) ans= sum(A[len(A)//2-1:len(A)//2+1])/2 if len(A)%2==0 else A[len(A)//2] print(ans)