using System; using System.Collections.Generic; using System.Text; class No275 { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); string[] input = Console.ReadLine().Split(' '); float answer = 0; Array.Sort(input); if(n % 2 == 0) { answer = ((float.Parse(input[n / 2 - 1]) + float.Parse(input[n / 2])) / 2); } else { answer = float.Parse(input[n/2]); } Console.WriteLine("{0:F1}", answer); } }