#include <stdio.h>

int main(void) {
    
    int rep,valor,soma;

    while(rep < 10) {

        //printf("Digite um valor : ");
        scanf("%d",&valor);
    
        soma += valor;
    
        rep = rep + 1;  

    }

    printf("Total dos valores : %d ", soma);
    
    return 0;
}