N,K=(int(x) for x in input().split()) if (N,K)==(0,1) or (N,K)==(1,2) or (N,K)==(2,0): print("Won") elif N==K: print("Drew") else: print("Lost")