V=list(map(int,input().split())) N=V[0] K=V[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') else: print('Lost')