#include using namespace std; int main(){ int n;cin >> n; vector p(n,true),w(n); p[0]=false; p[1]=false; for(int i=2;i*i<=n;i++){ if(p[i]){ for(int j=2;j*i<=n;j++){ p[i*j]=false; } } } w[0]=true; w[1]=true; for(int i=0;i<=n;i++){ for(int j=0;i+j<=n;j++){ if(p[j]){ if(w[i]){ w[i+j]=(w[i+j]|0); } else{ w[i+j]=true; } } } } if(w[n]){ cout << "Win" << endl; } else{ cout << "Lose" << endl; } }