m,y=map(int,input().split()) if m==y: print("Drew") elif m+1==y or m-2==y: print("Won") else: print("Lost")