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 == 0) { if (b == 1) { System.out.println("Won"); } else{ System.out.println("Lost"); } } else if (a == 1) { if (b == 0) { System.out.println("Lost"); } else{ System.out.println("Won"); } } else if (a == 2) { if (b == 0) { System.out.println("Won"); } else{ System.out.println("Lost"); } } } }