#abc178b. [abc178_b]Product Max

[abc178_b]Product Max

Problem Statement

Given are integers a,b,ca,b,c and dd. If xx and yy are integers and aleqxleqba \\leq x \\leq b and cleqyleqdc\\leq y \\leq d hold, what is the maximum possible value of xtimesyx \\times y?

Constraints

  • \-109leqaleqbleq109\-10^9 \\leq a \\leq b \\leq 10^9
  • \-109leqcleqdleq109\-10^9 \\leq c \\leq d \\leq 10^9
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

aa bb cc dd

Output

Print the answer.


Sample Input 1

1 2 1 1

Sample Output 1

2

If x=1x = 1 and y=1y = 1 then xtimesy=1x \\times y = 1. If x=2x = 2 and y=1y = 1 then xtimesy=2x \\times y = 2. Therefore, the answer is 22.


Sample Input 2

3 5 -4 -2

Sample Output 2

-6

The answer can be negative.


Sample Input 3

-1000000000 0 -1000000000 0

Sample Output 3

1000000000000000000