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