#abc098a. [abc098_a]Add Sub Mul

[abc098_a]Add Sub Mul

Problem Statement

You are given two integers AA and BB. Find the largest value among A+BA+B, ABA-B and AtimesBA \\times B.

Constraints

  • \-1000leqA,Bleq1000\-1000 \\leq A,B \\leq 1000
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

AA BB

Output

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


Sample Input 1

3 1

Sample Output 1

4

3+1=43+1=4, 31=23-1=2 and 3times1=33 \\times 1=3. The largest among them is 44.


Sample Input 2

4 -2

Sample Output 2

6

The largest is 4(2)=64 - (-2) = 6.


Sample Input 3

0 0

Sample Output 3

0