public static void checkSeason(int month) {
        //напишите тут ваш код
if (month > 0 & month < 3) {
System.out.println("зима");}
if (month > 2 & month < 6) {
System.out.println("весна");}
if (month > 5 & month < 9) {
System.out.println("лето");}
if (month > 8 & month < 12) {
System.out.println("осень");}
if (month == 12) {
System.out.println("зима");}

    }
}