first = input() split_first = first.split() N = int(split_first[0]) K = int(split_first[1]) if(N==K): print('Drew') else: if(N==0): if(K==1): print('Won') else: # K=2 print('Lost') elif(N==1): if(K==0): print('Lost') else: # K=2 print('Won') else: #N=2 if(K==0): print('Won') else: #K=1 print('Lost')