#include <stdio.h> void main () { int c=0,k; for(k=0;k<5;k++) switch(k) { default:c+=k; case 2:c++;break; case 4:c+=2; } printf("%d\n",c); }