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