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