import java.util.Scanner; public class No264{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int zibun = sc.nextInt(); int aite = sc.nextInt(); String result[][] = new String[3][3]; for (int i=0; i<3; i++){ for (int j=0; j<3; j++){ switch (i-j){ case 2: result[i][j] = "Won"; case 1: result[i][j] = "Lost"; case 0: result[i][j] = "Drew"; case -1: result[i][j] = "Won"; case -2: result[i][j] = "Lost"; } } } System.out.println(result[zibun][aite]); } }