s = input().split() N = int(s[0]) K = int(s[1]) if N == K: print('Drew') elif N < K or (N == 2 and K == 0): print('Won') elif N > K or (N == 0 and K == 2): print('Lost')