#include "polya.H"

class Stack
{
public:

Stack();

void operator<<(Poly x);

int operator>>(Poly & x);


private:

Polylist youngest;
};
