def Factorisation(s,b,c,d): if s==0: m=b n=c else: m=b+s n=-d/s return m,n