Write a program to find a convex polygon whose sides have the given lengths.
In this task, we consider a polygon to be convex if all its inner angles are strictly greater than
Input Specification
The first line of the file contains an integer
Output Specification
If the desired polygon can be constructed, the output should contain exactly
The vertices of the constructed polygon can be listed either clockwise or counterclockwise.
If the polygon cannot be constructed, print NO SOLUTION
on the single line of the output file.
Sample Input
4
7
4
5
4
Sample Output
0.5 2.5
7.5 2.5
4.5 6.5
0.5 6.5
Grading
The grading program considers two lengths equal if they differ by less than
Comments