#abc137a. [abc137_a]+-x

[abc137_a]+-x

Problem Statement

We have two integers: AA and BB.

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

Constraints

  • All values in input are integers.
  • \-100leqA,Bleq100\-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 AtimesBA \\times B.


Sample Input 1

-13 3

Sample Output 1

-10

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


Sample Input 2

1 -33

Sample Output 2

34

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


Sample Input 3

13 3

Sample Output 3

39

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