a,b = [int(x) for x in input().split(" ")] if a == b: print("Drew") elif (a==0 and b==2) or (a==1 and b==0) or (a==2 and b==1): print("Lost") else: print("Won")