Drop links or images here to add them to the editor.

Switch Calculator

Read two numbers and an operator (+, -, *, /). Use switch to calculate the result.

Input

Three values separated by spaces:

  1. a number
  2. an operator (+, -, *, /)
  3. another number

Output

Print the result of the operation.

Examples

Input:

5 + 3

Output:

8