import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int myhand=sc.nextInt(); int comhand=sc.nextInt(); System.out.println(judge(myhand,comhand)); } static String judge(int myhand,int comhand) { int judge=(myhand-comhand+3)%3; if(judge==0) { return "Drew"; }else if(judge==2) { return "Won"; }else { return "Lost"; } } }