me, you = map(int, input().split()) if me == you: print('Drew') elif (me, you) == (2, 0) or me - you == -1: print('Won') else: print('Lose')