#include
#include
int main ()
{
using namespace std;
// A stack of integers
stack stackIntegers;
// A stack of doubles
stack stackDoubles;
// A stack of doubles contained in a vector
stack > stackDoublesInVector;
return 0;
}