Problem3133--【语言基础】a + b * c

3133: 【语言基础】a + b * c

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

Description

题目给出一道算式a + b * c(1 <= a,b,c <= 1000000),请算出它的答案。

Input

a,b,c

Output

答案

Sample Input Copy

3 4 5

Sample Output Copy

23

HINT

3 + 4 * 5 = 23