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