There are two piles of lemons; one pile initially contains
- Remove a positive number of lemons from a pile, or
- Remove the same positive number of lemons from both piles.
The player who is unable to make a move is the loser. If both players play optimally, determine whether the first player will win.
Constraints
Input Specification
The only line contains two space-separated integers,
Output Specification
Output Win
if the first player wins, and Lose
otherwise.
Sample Input
Copy
4 5
Sample Output
Copy
Win
Comments