t,s=map(int,input().split()) if t==s: print("Drew") elif (t==0 and s==2) or (t==1 and s==0) or (t==2 and s==1): print("Lost") else: print("Won")