N,K = map(int,raw_input().split()) ans = 'Drew' if (N == 0 and K == 1) or (N == 1 and K == 2) or (N == 2 and K == 0): ans = 'Won' elif (K == 0 and N == 1) or (K == 1 and N == 2) or (K == 2 and N == 0): ans = 'Lost' print ans