#include using namespace std; int main(){ int W, Z; double B; cin >> W >> Z >> B; cout << (W + Z) * (1 + B); }