N, K = list(map(int, input().split())) if (N + 1) % 3 == K: print('Won') elif N == (K + 1) % 3: print('Lost') else: print('Drew')