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