1502: 1.3-02:计算(a+b)*c的值
Memory Limit:64 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:1052
Solved:908
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
HINT
提示:使用int即可。