class Animal { float weight = 10.2f; void eat() { System.out.println("The animal is eating"); } void sleep() { System.out.println("The animal is sleeping"); } }