#include <string>
#include <fstream>
int main(
int argc,
char** argv)
{
Z root = Z(7);
PEZ p = EZ(Z(-4), Z(2), root) * PEZ("x^2") +
EZ(Z(3), Z(4), root) * PEZ("x") +
EZ(Z(5), Z(6), root) * PEZ("1");
std::cout <<
"num roots: " << roots.
size() << std::endl;
std::cout << roots << std::endl;
return 0;
}