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