export function sum(values) {
// implementar logica aqui
let soma = 0
for(let i in values) {
soma += values[i]
}
return soma