M, K = map(int, input().split()) mul = (M-1)//(K+1) notmul = M-1-mul if notmul%2==1: print('Win') elif mul==0: print('Draw') else: print('Lose')