i,u = input().split() if i == u: print("Drew") elif int(u)-int(i) == 1 or int(u)-int(i) == -2: print("Won") else: print("Lost")