A, B = map(int, input().split()) if A == B: print("Drew") elif (A + 1 == B) or (A + 1 == B + 3) : print("Won") else: print("Lost")