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