1
int switch_nested(int x, int y){ int r=0; switch(x){ case 1: switch(y){ case 1: r=1; break; default: r=0; } break; default: r=-1; } return r; }