#abc050a. [abc050_a]Addition and Subtraction Easy

[abc050_a]Addition and Subtraction Easy

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≦A,B≦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.


Sample Input 1

1 + 2

Sample Output 1

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


Sample Input 2

5 - 7

Sample Output 2

-2