package com.codegym.task.task02.task0208; /* One cat isn't enough */ public class Solution { public static void main(String[] args) { //write your code here Cat bella = new Cat(); Cat bimbim = new Cat(); } public static class Cat { } }