def sectional_subset_sum(lst, chunk_size):
# Initialize an empty list to store the sums
result = []
# Iterate over the list in chunks of chunk_size
for i in range(0, len(lst), chunk_size):
# Sum the elements in the current chunk
chunk_sum = sum(lst[i:i+chunk_size])
# Append the sum to the result list
result.append(chunk_sum)
# Return the result list
return result
# Output: [19, 37, 44]
print(sectional_subset_sum([4, 7, 8, 10, 12, 15, 13, 17, 14], 3))
# Output: [3, 7, 11, 15]
print(sectional_subset_sum([1, 2, 3, 4, 5, 6, 7, 8, 9], 2))
print(sectional_subset_sum([1, 2, 3, 4, 5, 6, 7, 8, 9], 4)) # Output: [10, 22]