me, you= map(int, input().split()) def janken(me, you): if me ==2 and you==0: print('Won') elif me ==0 and you ==2: print('Lost') elif me - you == 1: print('Lost') elif me - you == -1: print('Won') else: print('Drew') janken(me, you)