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