N, K = gets.split.map(&:to_i) puts N == K ? 'Drew' : (N + 1) % 3 == K ? 'Won' : 'Lost'