package com.javarush.task.task11.task1116; //I know that his commandment is eternal life. //The things therefore which I speak, even as the Father has said to me, so I speak. (John 12:50) /* Цепочка наследования */ public class Solution { public static void main(String[] args) { } public class Pet { } public class Cat extends Pet { } public class Dog extends Pet { } }