def a_multiple_de_b(a,b): n=0 m=0 while m<=a: m+=b n+=1 if a==(n-1)*b: return True else: return False