a, b = gets.split.map(&:to_i) if a == b puts 'Drew' else case a - b when -1,2 puts 'Won' when -2,1 puts 'Lost' end end