package en.codegym.task.jdk13.task05.task0501;

/*
Cat carnage (1)
*/

public class Solution {
    public static void main(String[] args) {

        Cat cat1 =  new Cat("name1",1,2,3);
        Cat cat2 =  new Cat("name2",1,2,3);
        Cat cat3 =  new Cat("name3",1,2,3);

    }

    public static class Cat {
        //write your code here
        private String name;
        private int age;
        private int weight ;
        private int strength;


        Cat(String name , int age, int weight , int strength)
        {
            this.name = name;
            this.age = age;
            this.weight = weight;
            this.strength = strength;
        }

    }
}