N, K = (int(i) for i in input().strip().split(' ')) a = (N - K) % 3 if a == 0: print('Drew') elif a == 1: print('Lost') elif a == 2: print('Won')