//write your code here if (month >= 12) { System.out.println("winter " + "(12)"); } if (month > 10) { System.out.println("spring " + "(4)"); } if (month < 7) { System.out.println("summer " + "(7)"); } if (month <= 4) { System.out.println("autumn " + "(10)"); } } }