[a, b] = [int(x) for x in input().split(' ')] ret = (a - b + 3)%3 if ret is 0: print('Drew') elif ret is 1: print('Lost') elif ret is 2: print('Won')