import java.io.*; import java.util.*; class Main{ public static void main(String[] args)throws IOException { String[][] janken={{"Drew","Won","Lost"}, {"Lost","Drew","Won"}, {"Won","Lost","Drew"}}; Scanner scan=new Scanner(System.in); int n=Integer.parseInt(scan.next()); int k=Integer.parseInt(scan.next()); System.out.println(janken[n][k]); } }