n, k = gets.split(" ").map(&:to_i) case (n - k) % 3 when 0 puts "Drew" when 1 puts "Lost" when 2 puts "Won" end