n,k=map(int,input().split()) print("Drew" if n==k else "Won" if (n==0 and k==1) or (n==1 and k==2) or (n==2 and k==0) else "Lost")