import java.util.Scanner;

public class Mower {

    static Scanner sc = new Scanner(System.in);


    public static void main(String[] args) {

        int w = sc.nextInt();
        int h = sc.nextInt();
        int x = sc.nextInt();
        int y = sc.nextInt();

        boolean win = false;

        if (w == 1) {
            int pv1 = h - y;
            if (pv1 % 2 == 1) {
                win = true;
            } else {
                int pv2 = h - pv1 - 1;
                if (pv2 % 2 == 1) {
                    win = true;
                }
            }
        } else if (h == 1) {
            int pv1 = w - x;
            if (pv1 % 2 == 1) {
                win = true;
            } else {
                int pv2 = w - pv1 - 1;
                if (pv2 % 2 == 1) {
                    win = true;
                }
            }
        } else {
            win = true;
        }

        if (win) {
            System.out.println("Win");
        } else {
            System.out.println("Lose");
        }

    }


}
