N = int(raw_input()) A = map(int,raw_input().split()) A.sort() if N % 2 == 0: print (A[N / 2 - 1] + A[N / 2]) * 1.0 / 2 else: print A[N / 2]