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