100 #ABC050A. [ABC050A] Addition and Subtraction Easy

[ABC050A] Addition and Subtraction Easy

Score : 100100 points

Problem Statement

Joisino wants to evaluate the formula "AA opop BB". Here, AA and BB are integers, and the binary operator opop is either + or -. Your task is to evaluate the formula instead of her.

Constraints

  • 1A,B1091 \leq A,B \leq 10^9
  • opop is either + or -.

Input

The input is given from Standard Input in the following format:

AA opop BB

Output

Evaluate the formula and print the result.

1 + 2
3

Since 1+2=31 + 2 = 3, the output should be 33.

5 - 7
-2