import java.util.Scanner; class Yukicoder { static public void main(String[] args) { int my,you; Scanner scanner = new Scanner(System.in); my = scanner.nextInt(); you = scanner.nextInt(); if (my == you) System.out.println("Drew"); else if (you - my > 0) { if (my + 1 == you) System.out.println("Won"); else System.out.println("Lost"); } else { if (you + 1 == my) System.out.println("Lost"); else System.out.println("Won"); } } }