import java.util.*; public class janken{ public static void main(String... args){ Scanner scan = new Scanner(System.in); int me = scan.nextInt(); int you = scan.nextInt(); System.out.println(DOjanken(me,you)); } public static String DOjanken(int m,int y){ if(m==y)return "Drew"; String result = ""; switch(m){ case 0: if(y==2)result="Lost"; if(y==1)result="Won"; break; case 1: if(y==0)result="Lost"; if(y==2)result="Won"; break; case 2: if(y==0)result="Won"; if(y==1)result="Lost"; break; } return result; } }