public interface Animal
{
    void speak();

    void eat();
}
