Anwer=5565
sum = 0
for i in range(105,0,-1):
sum = sum + i
print(sum)
The sum value initializes at 0. The loop starts with 105, ends with 1, and decreases the value by 1. The numbers add to each iteration's sum until the loop ends and displays the sum.