I have this problem: given $N$, $1 \leq N\leq 100$ integers which are roots from a polynomial, calculate the sum of coefficients from that polynomial
for example: given $3$ integers $2$, $2$ and $3$, I can calculate the polynomial $$x^3 - 7x^2 +16x -12,$$ so the sum of coefficients is $-2$
but if I have $100$ integers, I think calculating the polynomial will be enormous, so is there some way to find this sum of coefficients?