f(x) = x*x riemann(inicio, fim, delta,soma)=(inicio < fim)?riemann(inicio+delta, fim, delta,soma+f(inicio)):soma*delta print riemann(0,1,0.01,0)