So i tried after line 25:
else if (month > 8 && month < 12)
            System.out.println("autumn");
But it wouldn't work... I also tried:
else
            System.out.println("autumn");
Error: 'else' without 'if': Solution.java, line: 26, column: 9 // com/codegym/task/task04/task0411/Solution.java:26: error: 'else' without 'if' else if (month > 8 && month < 12) ^