n,k=map(int,input().split()) if (n==0 and k==1) or (n==1 and k==2) or (n==2 and k==0): print('Won') elif n==k: print('Drew') else: print('Lost')