#Z12102. 计算(a+b)*c的值
计算(a+b)*c的值
Description
Given three integers , , and , compute the value of the expression .
Output Format
The input consists of a single line containing three integers , , and , separated by spaces. (-10,000 < a, b, c < 10,000)
Output a single line containing the value of the expression.
2 3 5
25
Related
In following homework: