export function sum(values) {
// implementar logica aqui
return values.reduce((somatorio, valor) => {
return somatorio + valor
}, 0)
}