class ji
{
public static void main(String[] args)
{
int x= 5;
switch(x);
{
case 3:
case 4:
case 5:
System.out.println(x+"春天");
break;
case 6:
case 7:
case 8:
System.out.println(x+"夏天");
break;
case 9:
case 10:
case 11:
System.out.println(x+"秋天");
break;
case 12:
case 1:
case 2:
System.out.println(x+"冬天");
break;
default:
System.out.println("不符合");
}
System.out.println("不符合");
}
}