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