import java.util.Scanner object Problem264 { def proc(n: Int, k: Int): String = (n, k) match { case _ if n == k => "Drew" case _ if (n + 1) % 3 == k => "Won" case _ => "Lost" } def main(args: Array[String]) { val sc = new Scanner(System.in) val (n, k) = (sc.nextInt(), sc.nextInt()) val result = proc(n, k) println(result) } }