Problem5443--简单计算器2

5443: 简单计算器2

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

输入一个两个数字加减乘除(+-*/)运算的算式,算出算式的结果(只需考虑整数运算)。保证所有输入数据范围在 $-10^9$ 到 $10^9$ 之间。

Input

一个计算两个数和加减乘除的算式。具体看题目描述。

Output

算式的计算结果。

Sample 1 Input

3+5

Sample 1 Output

8

Sample 2 Input

6/2

Sample 2 Output

3

Sample 3 Input

10*347

Sample 3 Output

3470

8-13

-5

Source/Category