#じゃんけん N,K=(int(i) for i in input().split()) if N==K: print("Drew") elif N==2: if K==0: print("Won") else: print("Lost") elif K==2: if N==0: print("Lost") else: print("Won") elif N