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