시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 256 MB61424071.429%

문제

Output the maximum area of a rectangle that can be inscribed into a circle of radius R. Rectangle's shorter side should not be longer than B.

입력

First line of the input contains an integer T (1 <= T <= 1000) - the number of test cases. Next T lines each contain two integers R and B (1 <= R,B <= 10000).

출력

For each test case print on a separate line the maximum area of a rectangle with a maximum shorter side B that can be inscribed into a circle of radius R. Your answer should be rounded to three digits after the decimal point (see sample output).

예제 입력 1

3
1 1
1 2
2 2

예제 출력 1

1.732
2.000
6.928