시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB20101050.000%

문제

Time traveling runs the risk of causing all sorts of problems and paradoxes, like duplicate people, parallel universes, and black holes, to name a few. Tim is well aware of what’s at stake, but he continues to time travel because he knows the secret: you have to properly close your tears in the space-time continuum! This can be done by simply visiting each space-time destination in a right-handed orientation. Easy!

Specifically, Tim has a list of points in the space-time plane which represent his trip, and he has to start and end at the same point. But there are two possible ways of traversing the list: forwards and backwards. One way leads to prosperity, and the other to paradoxes and total ruin. Tim has been verifying his trips by hand, but realizing how dangerous this is, Tim has decided he wants a program that can verify his trips for him.

입력

The first line is the number K of input data sets, followed by the K data sets, each of the following form:

The first line of each data set contains the number 3 ≤ N ≤ 100 of space-time points in Tim’s trip. The next N lines each contain two integers s and t, a space-time coordinate, where s is plotted on the x-axis, t on the y-axis, and −100 ≤ s, t ≤ 100. Taken in order, the N points will always form a closed, non-overlapping polygon, where no three consecutive space-time points are collinear.

출력

For each data set, output “Data Set x:” on a line by itself, where x is its number. On the next line, output “RIGHT” if, when looking down on the space-time plane, Tim would have his right hand touching the interior of the polygon as he traverses its points in the input order. Otherwise, output “LEFT”. Each data set should be followed by a blank line.

예제 입력 1

2
5
3 0
4 1
5 0
5 3
2 2
3
0 1
2 2
1 0

예제 출력 1

Data Set 1:
LEFT

Data Set 2:
RIGHT