import random N = int(input()) K = int(input()) if N == 0: if N - K == 0: print('Drew') elif N - K == -1: print('Won') elif N - K == -2: print('Lost') elif N == 1: if N - K == 0: print('Drew') elif N - K == 1: print('Lost') elif N - K == -1: print('Won') elif N == 2: if N - K == 0: print('Drew') elif N - K == 2: print('Won') elif N - K == 1: print('Lost')