n,m=(int(i) for i in input().split()) g=0 c=1 p=2 if n==m: print("Drew") elif (n==g and m==c) or (n==c and m==p) or (n==p and m==g): print("Won") else: print("Lost")