#include<iostream>
#include<cstdlib>
#include<string>
#include"Parser.hpp"
#include"Poli.hpp"

int main(int argc, char *argv[])
{
	Poli p, q;
	std::cin >> p >> q ;
	std::cout << "p: " << p << std::endl;
	std::cout << "q: " << q << std::endl;

	std::cout << p+q << std::endl;

	return EXIT_SUCCESS;
}
