#include <stdio.h> void main () { double a, b, h; scanf ("%lf,%lf,%lf", &a, &b, &h); printf ("%f", (a+b)*h/2); }