def summate(n):
    acc = 0
    for i in range(n+1):
        acc += i
    return acc

print(summate(100000000))
