public class Cat extends Animal {

    public Cat() {
    }

    public Cat(String b, char g, float h, float w, int a) {
        super("Cat", b, g, h,w,a);      // Invoke the Animal constructor
    }

    public static void main(String args[]){
	Cat tabby = new Cat("Tabby", 'F', 2, 50, 2);
	System.out.println(tabby);
	Cat calico = new Cat("Calico", 'M', 4, 100, 5);
	System.out.println(calico);
    }
}
