#Z12102. 计算(a+b)*c的值

计算(a+b)*c的值

Description

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

Output Format

The input consists of a single line containing three integers aa, bb, and cc, separated by spaces. (-10,000 < a, b, c < 10,000)

Output a single line containing the value of the expression.

2 3 5

25