a, b = map(int, input().split()) c = (a - b + 3) % 3 if c == 0: print("Drew") elif c == 2: print("Won") else: print("Lost")