sage: integrate(f, x)
sage: # Double indefinite integral wrt x
sage: integrate(f, x, x)
sage: # limits and a double integral: x is the inner integral, y is the outer integral (note that this order is backwards from Mma...they think of nested integrals as int dx int dy function, so the first parameter is the outer integral in Mma.)
sage: integrate(f, (x, 0, 1), (y, 1, 2))
sage: integrate(f, (x, 0, y), (y, 1, 2))
sage: # Double integral, x is the inner integral, y is the outer integral
sage: integrate(f, x, y)