8631: Triangle Game

内存限制:128 MB 时间限制:1 S 标准输入输出
题目类型:传统 评测方式:文本比较 上传者:
提交:1 通过:1

题目描述

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. Players take turns in decreasing a certain positive integer on one of the integers. If there doesn't exist a non-degenerate triangle whose side lengths are a,b,c after a player's operation, the player loses.

Kate goes first. If both of them play optimally, will Kate win?

输入格式

The first line of input contains one integer T(1T104), indicating the number of test cases.

For each test case, the only line contains 3 integers a,b,c (1a,b,c109). It is guaranteed that there exists a non-degenerate triangle whose side lengths are a,b,c respectively.

输出格式

For each test case, if Kate will win, output Win in a single line. Otherwise, output Lose in a single line.

输入样例 复制

3
2 2 3
2 3 4
5 3 4

输出样例 复制

Win
Lose
Win