#include<bits/stdc++.h> using namespace std; int main(){ double a, b, c, s; cin >> a >> b >> c; s = 0.5 * (a + b + c); cout << fixed << setprecision(1) << s; return 0; }