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