A higher resolution is required to access the IDE
- 96
Statement
Goal
You have to print the direction (Consider that the points represent the vertices of an arbitrary polygon, and you can draw the polygon if you take the points pairwise, in the order they are given. So, every two consecutive points form an edge, and the last edge is formed by the last and the first points.
Sample 1
P(1) => x=6, y=5
P(2) => x=11, y=5
P(3) => x=11, y=2
P(4) => x=3, y=2
│ · · · · · · · · · · · · ·
│ · · · · · 1 · · · · 2 · ·
│ · · · · · · · · · · · · ·
│ · · · · · · · · · · · · ·
│ · · 4 · · · · · · · 3 · ·
│ · · · · · · · · · · · · ·
┼───────────────────────────
The polygon is in the
Sample 2
P(1) => x=6, y=5
P(2) => x=11, y=5
P(3) => x=11, y=2
P(4) => x=16, y=7
│ · · · · · · · · · · · · · · · · · ·
│ · · · · · · · · · · · · · · · 4 · ·
│ · · · · · · · · · · · · · · · · · ·
│ · · · · · 1 · · · · 2 · · · · · · ·
│ · · · · · · · · · · · · · · · · · ·
│ · · · · · · · · · · · · · · · · · ·
│ · · · · · · · · · · 3 · · · · · · ·
│ · · · · · · · · · · · · · · · · · ·
┼─────────────────────────────────────
The polygon is in the
Input
Line 1: an integer N indicating the number of points in the polygon
Next N lines: a pair of integers X Y giving the location of a point
The polygon is formed by connecting all the points in a sequential manner. The last point is connected to the first one.
Next N lines: a pair of integers X Y giving the location of a point
The polygon is formed by connecting all the points in a sequential manner. The last point is connected to the first one.
Output
One line: CLOCKWISE or COUNTERCLOCKWISE
Constraints
- N ranges from 4 to 20
- X and Y range from0 to 20
- X and Y range from
Example
Input
4 6 5 11 5 11 2 3 2
Output
CLOCKWISE
A higher resolution is required to access the IDE