n, k = map(int, input().split()) Won = [(0, 1), (1, 2), (2, 0)] print('Won' if (n, k) in Won else "Drew" if n == k else 'Lost')