import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); if (a == b) { System.out.println("Drew"); } else if (a == 2 && b == 0) { System.out.println("Lost"); } else if (a > b) { System.out.println("Won"); } else { System.out.println("Lost"); } } }