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