Quote:
but all I am receiving is error
What error message? with which input?
I see a major flow in your code:
Your code do not enforce the order of coeffs in the storage list. By enforcing the order of coeffs when you put in storage list, it will simplify later usage.
One you know the coeffs are in order, adding the 2 polynomials is not really complicated.
Take a sheet of paper and a pencil. note the coeffs as stored in lists and add the 2 lists in a third. How did you proceed ?
This is your algorithm; your code will have to do the same.