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