
def PGSomme1():
    n = int(input("n? "))
    somme = 0
    for j in range(n):
        nombre = int(input())
        somme += nombre
    print("Somme = ", somme, sep="")

PGSomme1()