import java.util.Scanner;

class Capitulo2 {

    public static void main(String[] args) {
        Scanner teclado = new Scanner(System.in);
        long soma = 0;
        long tam = teclado.nextLong();
        long[] vetor = new long[10000002];
        for (int i = 0; i < tam; i++) {
            vetor[i] = teclado.nextLong();
            soma += vetor[i];
        }
    }
}