public class E extends C
{
	int k;

	public E()
	{
		super(4);
		k=2;
	}

	public E(int k1)
	{
		this(); // kalder den anden konstruktør for E
		k=k1;
	}
}
