interface Animal { void eat(); } // Сюда вставить код public class HouseCat implements Feline { public void eat() { } }