using System; using System.Text; using System.Linq; namespace ConsoleApp11 { class Program { static void Main(string[] args) { int tem; int N = int.Parse(Console.ReadLine()); var input = Console.ReadLine().Split(' '); int[] A = new int[N]; for(int i = 0; i < N; i++) { A[i] = int.Parse(input[i]); } for(int i = 0; i < N - 1; i++) { for(int j = i + 1; j < N; j++) { if(A[i] > A[j]) { tem = A[j]; A[j] = A[i]; A[i] = tem; } } } if(N % 2 != 0) { int j = Convert.ToInt32(Math.Round((double)N / 2)); Console.WriteLine(A[j]); } else if(N % 2 == 0) { int a = N / 2; int b = (N / 2) - 1; double d = Convert.ToDouble((A[a] + A[b]) / 2.0); d = d * 10; Console.WriteLine(Math.Truncate(d) / 10); } } } }