可以证明nim和为0必输的方法是正确的
#include <iostream>
#include <cstdio>
#include <vector>
#include <cstring>
#include <algorithm>
using namespace std;
#define mset(x) memset(x, 0, sizeof(x))
#define rep(i,x,y) for(int i=x; i<=y; i++)
typedef long long ll;
int n;
ll x;
int main(){
// freopen("a.txt", "r", stdin);
while(cin>>n){
ll res=0;
rep(i,1,n){
scanf("%d", &x);
res ^= x;
}
if(res!=0)
puts("Win");
else
puts("Lose")
}
return 0;
}
/*DESCRIPTION:
*/