Python
# Write total_up_to(n): sum of integers from 1 to n, inclusive.
def total_up_to(n):
    pass