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