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