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