x,y=map(int,input().split()) if x==y: print("Draw") elif x-y in [2,-1]: print("Win") else: print("Lose")