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