def fun(): res = (1 + b) * (w + z) return f"{res:.0f}" w, z, b = map(float, input().split()) print(fun())