N, K = [int(n) for n in input().split(' ')] if (N + 1) % 3 == K: print('Won') elif N == K: print('Drew') else: print('Lost')