N, K = map(int, raw_input().split()) if (N==K): print("Drew") elif (K-N==1 or K-N==-2): print("Won") else: print("Lost")