def puissance (x,y): p = x for i in range (y - 1): p = p * x return p