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