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

Memory Limit:64 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:7 Solved:1

Description

给定$3$个整数$a$、$b$、$c$,计算表达式$(a+b)×c$的值。

Input

输入仅一行,包括三个整数$a$、$b$、$c$, 数与数之间以一个空格分开。($-10,000< a,b,c<10,000$)

Output

输出一行,即表达式的值。

Sample Input Copy

2 3 5

Sample Output Copy

25