inputs = gets.chomp.split.map(&:to_i) n, k = inputs[0], inputs[1] puts case when n == k then 'Drew' when (n - k) % 3 == 1 then 'Lost' else 'Won' end