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