class Mammal extends Animal { int heartRate = 90; void breathe() { System.out.println("The mammal is breathing"); } }