def total(N):
    s = 0
    for i in range(1, N + 1):
        s = s + i
    return s
total(10)
total(100)
