def amicaux(n,p): if sum(diviseurs_stricts(n))==p and sum(diviseurs_stricts(p))==n: return True else: return False