N, AX = int(input()), [int(i) for i in input().split(' ')] AX.sort() i = N // 2 # 中央値のインデックス print((AX[i - 1] + AX[i]) / 2 if N % 2 == 0 else AX[i])