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