Problem1425--计算(a+b)*c的值

1425: 计算(a+b)*c的值

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

蒜术师知道你一定学过加法和乘法,他还想让你写个程序来计算一个和加法、乘法有关的式子。

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

Input

输入仅一行,包括三个整数 a,b,ca,b,c, 数与数之间以一个空格分开。

(-10,000 \le a,b,c \le 10,00010,000a,b,c10,000)

Output

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

Sample Input Copy

2 3 5

Sample Output Copy

25

Source/Category

基础