a=int(input()) n=map(int,input().split()) num=list(n) num.sort() ans=a//2 if a%2==0: print((num[ans]+num[ans-1])/2) else: print(num[ans])