a,b = input().split() mod = (int(a)-int(b))/3 if mod==0: print("Draw") elif mod==1: print("Lost") else: print("Won")