import java.util.Scanner; public class A000264 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int me = sc.nextInt(); int you = sc.nextInt(); sc.close(); String res = ""; if(you==me) { res="Drew"; }else { if(you==0)you+=3; if(me+1==you) { res="Won"; }else { res="Lost"; } } System.out.println(res); } }