N, K = [int(i) for i in input().strip().split(' ')] print('Won' if (N - K) % 3 == 2 else 'Lost' if (N - K) % 3 == 1 else 'Drew')