no idea here..
package pl.codegym.task.task04.task0407;
/*
Koty we Wszechświecie
*/
public class Solution {
public static void main(String[] args) {
Kot kot1 = new Kot();
kot1=Kot.licznik;
Kot kot2 = new Kot();
System.out.println("Liczba kotów to " + Kot.licznik);
}
public static class Kot {
public static int licznik = 0;
}
}