Добрый день! Почему в задаче классы Мышь, Кот и другие имеют модификатор static? А класс Solution просто public. В чем здесь смысл? public static class Mouse { String name; int height; int tail; public Mouse(String name, int height, int tail) { this.name = name; this.height = height; this.tail = tail; } }