import java.util.Scanner; public class No275 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); // 整数の個数 int t[] = new int[n]; int x; //交換用 for(int i = 0;i < n;i++) { t[i] = sc.nextInt(); } for(int i = 0;i < n;i++) { for(int j = i + 1;j < n;j++) { if(t[i] > t[j]) { x = t[i]; t[i] = t[j]; t[j] = x; } } } if(n % 2 == 1) { System.out.println(t[n / 2]); }else { System.out.println(((float)t[n / 2] + t[(n / 2) - 1]) / 2); } } }