public class Solution {
    public static void main(String[] args) {
        checkSeason(1);
        checkSeason(3);
        checkSeason(6);
        checkSeason(9);
    }

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