i,y=map(int,input().split()) if i-y==-2 or i-y==1: print("Lost") elif i-y==-1 or i==2: print("Win") else: print("Draw")