public class Stack {
    LinkedList list;

    public Stack () {
	list = new LinkedList ();
    }

    public boolean empty () {
	return list.length == 0;
    }

    public void push (Object obj) {
	list.addFirst (obj);
    }

    public Object pop () {
	return list.removeFirst();
    }
}
