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