//プライムナンバーゲーム #include using namespace std; int main() { int N; bool t = true; cin >> N; if (N == 2) t = false; for (int i = 2; i < (N - 2); i++) { if ((N - 2) % i == 0) t = false; } if (t == true) cout << "Win" << endl; else cout << "Lose" << endl; }