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