def est_multiple(a,b): while a>=0: a -= b a += b return a==0