N,K= map(int, input().split()) if N == 0: if K == 0: print('Drew') elif K == 1: print('Won') else: print('Lost') elif N == 1: if K == 0: print('Lost') elif K == 1: print('Drew') else: print('Won') elif N == 2: if K == 0: print('Won') elif K == 1: print('Lost') else: print('Drew')