//No.2407 Bouns 2.0 #include int main(void){ int w, z; double b; scanf("%d %d %lf", &w, &z, &b); int point = w + z + b * w + b * z; printf("%d\n", point); return 0; }