export function sum(values) {
// implementar logica aqui
var soma = 0;
for (var i = 0; i < values.length; i++) {
soma += values[i];
}
return soma;