N, K = map(int, input().split()) if N == K: print("Drew") elif N == 0: if K == 1: print("Won") else: print("Lose") elif N == 1: if K == 0: print("Lose") else: print("Won") elif N == 2: if K == 0: print("Won") else: print("Lose")