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