win = [-1, 2] lose = [-2, 1] a, b = map(int, input().split(' ')) if a == b: print('Drew') elif a-b in win: print('Won') else: print('Lost')