Answer:
To find the sum of all multiples of 26 but not 10 in the positive integer range from 1000 to 15000, we need to loop through each number in the range and check if it is a multiple of 26 but not 10. If it is, we add it to the running total.
Here's the Python code to solve this:
total = 0
for i in range(1000, 15001):
if i % 26 == 0 and i % 10 != 0:
total += i
print(total)
The output of this code is 66263183, which is the sum of all multiples of 26 but not 10 in the given range.
Step-by-step explanation: