public class Snake extends Animal {
    
    /**
     * Construct a Snake with given name and color
     */
    public Snake(String theName, String theColor) {
	super(theName,theColor);
    }

    public int getNLegs() {
	return 0;
    }
    
    public String getSpeciesName() {
	return "serpente";
    }
}
