#K66382. Number Mirror Game
Number Mirror Game
Number Mirror Game
John is playing the Number Mirror Game. In this game, a number is provided and if the number reads the same forwards and backwards (i.e. it is a palindrome, meaning \(n=\text{reverse}(n)\)), then John wins; otherwise, he loses. Your task is to determine the outcome for each provided number.
The input is given via standard input and the output should be printed to standard output.
inputFormat
The first line of input contains an integer \(T\), the number of test cases. Each of the following \(T\) lines contains a non-negative integer represented as a string.
outputFormat
For each test case, print a single line containing "Win" if the given number is a palindrome, or "Lose" otherwise.
## sample3
121
12321
123456
Win
Win
Lose
</p>