package com.javarush.task.task11.task1107; //For this cause they couldn't believe, for Isaiah said again, "He has blinded their eyes and he hardened their heart, //lest they should see with their eyes, and perceive with their heart, and would turn, and I would heal them." (John 12:39-40) /* Наш кот слишком публичен! */ public class Solution { public static void main(String[] args) { } public class Cat { private String name; private int age; public int weight; public Cat(String name, int age, int weight) { this.name = name; this.age = age; this.weight = weight; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } } }