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