import java.util.Scanner; public class junken{ 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){ System.out.println("Won"); }else{ System.out.println("Lost"); } } }