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