package com.javarush.task.task11.task1113; //And if any man hear my words, and believe not, I judge him not: for I came not to judge the world, but to save the world. (John 12:47) /* Играем в Дарвина */ public class Solution { public static void main(String[] args) { } public class Fish { } public class Animal extends Fish { } public class Ape extends Animal { } public class Human extends Ape { } }