import java.util.Scanner; class RPS{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int me = sc.nextInt(); int you = sc.nextInt(); if(me == you){ System.out.println("Drew"); }else if((me==you-1) || ((me == 2) && (you == 0))){ System.out.println("Won"); }else{ System.out.println("Lost"); } } }