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