N,K=map(int,input().split()) arr=[[0,1,-1], [-1,0,1], [1,-1,1]] if arr[N][K]==1: print("Won") elif arr[N][K]==0: print("Drew") else: print("Lost")