Kate and Emilico are playing a game. There are 3 integers a,b,c It is guaranteed that there exists a non-degenerate triangle whose side lengths are a,b,ca,b,c respectively. The game goes as follows. Pla
Kate goes first. If both of them play optimally, will Kate win?
The first line of input contains one integer T(1≤T≤104), indicating the number of test cases.
For each test case, the only line contains 3 integers a,b,c (1≤a,b,c≤109). It is guaranteed that there exists a non-degenerate triangle whose side lengths are a,b,c respectively.
3
2 2 3
2 3 4
5 3 4
Win
Lose
Win