import java.util.Scanner; public class No_264 { public static void main(String[] args) { String[][] standings = {{"Drew","Won","Lost"}, {"Lost","Drew","Won"}, {"Won","Lost","Drew"} }; Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); System.out.println(standings[a][b]); sc.close(); } }