import java.io.*; import java.util.*; public class Helloworld { public static void main(String[] args){ Scanner sc = new Scanner(System.in); ArrayList hoge = new ArrayList<>(6); int i; float x = 0; for(i=0;i<6;++i){ hoge.add(sc.nextInt()); } hoge.remove(hoge.indexOf(Collections.max(hoge))); hoge.remove(hoge.indexOf(Collections.min(hoge))); for(int z: hoge){ x += z; } System.out.printf("%.2f",x / 4); } }