#P57. 练11.4计算(a+b)×c的值

练11.4计算(a+b)×c的值

Description

Given three integers aa, bb, and cc, calculate the value of the expression (a+b)×c(a+b) \times c.

Input Format

Input consists of a single line with three integers aa, bb, and cc, separated by spaces. The constraints are 10,000<a,b,c<10,000-10,000 < a, b, c < 10,000.

Output Format

Output a single line with the value of the expression.

Sample

2 3 5
25