public abstract class Mammal
{
	protected final String dangerous = "dubious";
	protected final boolean hair = true;
	
	public String isDangerous()
	{
		return this.dangerous;
	}
	boolean hasHair()
	{
		return hair;
	}
}
