N, K = map(int, input().split()) X = N - K Y = 'Lost' if X == 0: Y = 'Drew' elif X in (-1, 2): Y = 'Won' print(Y)