#include<bits/stdc++.h> using namespace std; int main(){ double a,b,h; cin>>a>>b>>h; printf("%.2lf",(a+b)/h); return 0;