import java.util.*; class yuki_264 { public static void main(String args[]){ Scanner scan = new Scanner(System.in); int p1 = scan.nextInt(); int p2 = scan.nextInt(); if(p1 == p2){ System.out.println("Drew"); } switch(p1){ case 0: if(p2 == 1){ System.out.println("Won"); }else if(p2 == 2){ System.out.println("Lost"); } break; case 1: if(p2 == 0){ System.out.println("Lost"); }else if(p2 == 2){ System.out.println("Won"); } break; case 2: if(p2 == 0){ System.out.println("Won"); }else if(p2 == 1){ System.out.println("Lost"); } break; } } }