Ver originalprivate int sumarnaturales(int hastacual){ int resultado = 0; for(int i=1; i<=hastacual; i++) { resultado += i; } return resultado;}