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