#include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; #define REP(i,n) for(int i=0; i=b; --i) #define ALL(c) (c).begin(), (c).end() typedef long long ll; typedef vector VI; typedef vector VL; typedef vector VVL; typedef vector VVI; typedef pair P; typedef pair PL; int main() { int n = 6; VI a(6); REP(i,n) cin >> a[i]; sort(ALL(a)); double s = 0; FOR(i,1,4) s += a[i]; printf("%.2f\n", s / 4.0); return 0; }