#ifndef STACK_H
#define STACK_H

class Stack{
private:
	int size;
	int stack[size];
public:
	void push(int x);
	int pop();
}

#endif