#include<bits/stdc++.h>
using namespace std;
int main()
{
    int a,b,c,d;std::cin >> a >> b>> c >> d;
    if(a == 1 && b == 1 && c == 1 && d ==1)
    cout << "Lose" << endl;
    else
    cout << "Win" << endl;

}