switch(a)
{
case 1:
case 2:
case 3:
{
printf("hello one!\n");
break;
}
case 4:
case 5:
case 6:
{
printf("hello two!\n");
break;
}
}