100 atcoder#ABC137A. [ABC137A] +-x

[ABC137A] +-x

Score : 100100 points

Problem Statement

We have two integers: AA and BB.

Print the largest number among A+BA + B, ABA - B, and A×BA \times B.

Constraints

  • All values in input are integers.
  • 100A, B100-100 \leq A,\ B \leq 100

Input

Input is given from Standard Input in the following format:

AA BB

Output

Print the largest number among A+BA + B, ABA - B, and A×BA \times B.

-13 3
-10

The largest number among A+B=10A + B = -10, AB=16A - B = -16, and A×B=39A \times B = -39 is 10-10.

1 -33
34

The largest number among A+B=32A + B = -32, AB=34A - B = 34, and A×B=33A \times B = -33 is 3434.

13 3
39

The largest number among A+B=16A + B = 16, AB=10A - B = 10, and A×B=39A \times B = 39 is 3939.