def main(): N, K = map(int, input().split()) if K - N in (1, -2): ans = 'Won' elif K == N: ans = 'Drew' else: ans = 'Lost' print(ans) main()