#ifndef Stack_h
#define Stack_h

class Stack
{
public:

  int size() {
    return 0;
  }


};

#endif