import java.util.*; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int me = scan.nextInt(); int you = scan.nextInt(); if(me == you){ System.out.println("Drew"); }else if(me != 2 && you == me+1 || me == 2 && you == 0 ){ System.out.println("Won"); }else{ System.out.println("Lost"); } } }