package yukicoder; import java.util.Scanner; public class Yukicoder { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int you = sc.nextInt(); int opponent = sc.nextInt(); if (you == 0 && opponent == 2) { System.out.println("Lost"); }else if (you == 2 && opponent == 0) { System.out.println("Won"); } else if (you < opponent) { System.out.println("Won"); } else if (you == opponent) { System.out.println("Drew"); } else { System.out.println("Lost"); } } }