
public interface Li {
	boolean isEmpty();
	int länge();
	Li add(Li that);
	Li mult(Li that);
	String toStringAux();
}
