Rule of Lemons
View as PDFThere are two piles of lemons; one pile initially contains  lemons, while the other pile initially contains 
 lemons. A game is played with these piles between two players, in which the players alternate making moves. In each move, a player performs the following:
- 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,  and 
.
Output Specification
Output Win if the first player wins, and Lose otherwise.
Sample Input
4 5
Sample Output
Win
Comments