I want to rewrite Integral of 10x^7-xy+y/x+2x^5 as sum of integrals. Something like
Int(10x^7-xy+y/x+2x^5) = Int(10x^7)-Int(xy)+Int(y/x)+Int(2x^5)
But sympy makes its own ordering and outputs
Int(10x^7-xy+y/x+2x^5) = Int(2x^5)+Int(10x^7)+Int(y/x)-Int(xy)
Where can I override this behaviour if Int is my own class?