beecrowd | 1296

Medians

By Shahriar Manzoor Bangladesh

Timelimit: 1

Given the length of three medians of a triangle you will have to find out the area of the triangle. Unless you are weak in geometry you should know that median of a triangle is formed by connecting any vertex of a triangle and the mid-point of its opposite edge. So a triangle has three medians.

Input

The input file contains aproximately 1000 lines of input. Each line contains three numbers which denote the length of the medians of a triangle. All the values in the input will be less than 100. Input is terminated by end of file.

Output

For each line of input you should produce one line of output. This line should contain the area of the triangle for the corresponding input. If it is not possible to form a triangle with the given medians, the area of the triangle should be set as -1. The areas should be rounded up to three digits after the decimal point.

Sample Input Sample Output

3 3 3
3 3 3
72.999 72.915 73.880
84.350 38.935 61.67
42.980 27.394 66.966
21.697 6.23 0.30
20.986 64.880 41.72

5.196
5.196
3098.718
1484.611
469.665
-1.000
-1.000