public class Cat {
    public int age;
    public int weight;
    public int strength;

    public Cat() {
    }

    public boolean fight(Cat anotherCat) {
        //напишите тут ваш код


           int a=0;
           int b=0;
if (this.age>anotherCat.age)
a++;
if(this.age<anotherCat.age)
b++;
if (this.strength>anotherCat.strength)
a++;
if (this.strength<anotherCat.strength)
b++;
if(this.weight>anotherCat.weight)
a++;
if(this.weight<anotherCat.weight)
b++;
else if(a>b)  return true;