package stack;

public interface MyStack<T> {
	
	void push(T item);
	
	T pop();
	
	T peek();
	
	int size();
}
