fun f = x^2;
fun g = derivative f in (x);
fun h = f(x) - int g (0 ~ 1);
for (var i = 0; i <= 1; i += 0.1) {
print(h(i));
}