Let's say that there exists a huge cake made from blueberries, strawberries and chocolate. It's shaped like a square, and has area of square meters. Professionals strongly advise that cake is being cut with wet knife and eaten with dry spoon. Also:
- Every cut begins and ends on the cake's perimeter
- A cut cannot lie completely on one of the sides
- No two cuts have the same starting and ending points, i.e. all cuts are different
Parts obtained by these cuts are separated and counted only after last cut has been made. During cutting, the cake keeps its square form.
At least how many cuts need to be made in order to obtain at least parts? Exactly what cuts to make?
Input Specification
The first and only line of input contains an integer , minimum number of parts that we must have after cutting is done.
Output Specification
The first line of output should contain the requested number of cuts, .
The following lines should have four integers each, coordinates of starting and ending point for each cut made. Coordinates are represented in millimeters, and opposing corners of the cake have coordinates and . So for each point lying on the side of the square, the following will hold: .
Scoring
If only the number of cuts is correct, you will get of the points for that test case.
Sample Input 1
1
Sample Output 1
0
Sample Input 2
4
Sample Output 2
2
-5000 -5000 5000 5000
5000 -5000 -5000 5000
Sample Input 3
7
Sample Output 3
3
-5000 5000 0 -5000
-2000 -5000 5000 5000
-5000 0 5000 0
Comments