Circum Triangle
You are given distinct points on the boundary of a circle with radius whose center is at the origin. As the points are on the same circle no three of them are collinear, so any three of them creates a valid triangle. Your job is to find the summation of areas of these triangles.
Input
Contains at most tests. Each test starts with two integers and . Here is the number of points and is the radius of the circle. You can assume that the center of the circle is always at the origin. This line is followed by lines each of which contains a floating-point number which actually denotes the angle in degree the designated point creates with respect to the origin with -axis. So, for example if is degree then the Cartesian coordinate of the intended point is . The last line contains and is not processed.
Output
For each test case print one line. This line contains an integer which is the total area (rounded to the nearest integer) of all possible triangles formed by the given points.