N = int(input()) A = list(map(int, input().split())) A.sort() if N & 1: print(A[N//2]) else: print(f'{(A[N//2]+A[N//2-1])/2:.1f}')