// Test program for my stack class.


#include <iostream.h>
// Get my stack class.
// #include "stack.h"
#include "problem.h"


int main() {

    stack<int> first;
    cout << first;

    return 0;

}
