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