1884: 计算(a+b)×c的值

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:40 Solved:39

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