a=int(input()) b=int(input()) if a==b: print("Drew") elif a+1==b: print("Won") elif a==2 and b==0: print("Won") else: print("Lost")