import random N = int(input()) K = int(input()) if N > K: print('Win') elif N == K: print('Drew') elif N < K: print('Lose')