#ifndef __STACK_HPP__
#define __STACK_HPP__

#include"cstdint"
#include"iostream"

#define MAX 10

using namespace std;
namespace bai25{
 class CStack{
  private:
   uint8_t counter;
  public:
   int32_t *stack;
  public:
   CStack();
   CStack(int32_t stack);
   ~CStack();
   bool IsEmpty();
   bool IsFull();
   void Push(const int32_t data);
   void Pop();
 };
};

#endif