import java.util.*; import java.math.*; import java.text.*; public class Main { private static Scanner sc = new Scanner(System.in); public static void main(String[] args) throws Exception { int[][] ret = {{0, 1, 2}, {2, 0, 1}, {1, 2, 0}}; String[] s = {"Drew", "Won", "Lost"}; System.out.println(s[ret[sc.nextInt()][sc.nextInt()]]); } }