N,K=map(int,input().split()) if N==K: print("Drew") else: if (N,K) in {(2,0),(1,2),(0,1)}: print("Won") else: print("Lost")