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