a, b = gets.split.map(&:to_i) if a == b then puts "Drew" elsif a == (b+1)%3 then puts "Won" else puts "Lost" end