100 atcoder#ABC050A. [ABC050A] Addition and Subtraction Easy
[ABC050A] Addition and Subtraction Easy
Score : points
Problem Statement
Joisino wants to evaluate the formula " ".
Here, and are integers, and the binary operator is either +
or -
.
Your task is to evaluate the formula instead of her.
Constraints
- is either
+
or-
.
Input
The input is given from Standard Input in the following format:
Output
Evaluate the formula and print the result.
1 + 2
3
Since , the output should be .
5 - 7
-2