def somme(n):
    s = ...
    for i in range(...):
        ...
    return s

s = somme(100)
print(s)
