#abc292f. [abc292_f]Regular Triangle Inside a Rectangle

[abc292_f]Regular Triangle Inside a Rectangle

Problem Statement

Find the maximum side length of a regular triangle that can be drawn within a rectangle whose side lengths are AA and BB.

Constraints

  • 1leqA,Bleq10001 \\leq A,B \\leq 1000
  • AA and BB are integers.

Input

The input is given from Standard Input in the following format:

AA BB

Output

Print the answer.
Your output is considered correct if the absolute or relative error from the true answer is at most 10910^{-9}.


Sample Input 1

1 1

Sample Output 1

1.03527618041008295791

The following figure shows an optimal drawing, with the side length of sqrt6sqrt2\\sqrt{6} - \\sqrt{2}.

image

Note that the sample output does not strictly match sqrt6sqrt2\\sqrt{6}- \\sqrt{2}, but the error is within 10910^{-9}, so it is considered correct.