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