Mayank is a professional golf player and he is very proud of his golf skills. Akash being Mayank's friend doubts his golf skills.
So one day, to test Mayank’s skills, Akash challenges Mayank to a Game of Golf. But he decides to play with his own rules to make Mayank uncomfortable and reduce his chances of a WIN.
Akash sets the rules of the game as follows:
RULES
GAMEPLAY
Your job is to find that after three shots are played does Mayank have a chance to win or not.
INPUT
First line of input contains a single integer T, denoting the number of test cases.
First line of each test case contains a positive integer K.
Second line of each test case contains three space separated positive integers A, B and C.
OUTPUT
For each test case, print a single line containing the string "WIN" (without quotes) if Mayank has chances of winning the game, or “LOSE” if he has no chance of winning the game.
CONSTRAINTS
1 ≤ T ≤ 100
1 ≤ A, B, C, K ≤ 2000
Case 1: For NO combination of exactly three such forward or backward shots he can win.
Case 2: If the first shot is hit forward, second one forward and last one again backward, Mayank wins.
Case 3: Again, no possible way to win.
Case 4: If first shot is hit backward, second one forward and last one gain backward, he wins.
Case 5: If first shot is hit backward, second one also backward and last one forward, he wins.