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