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