class C { int f(boolean b, boolean c) { int i = 0; if (b) { if (c) { i = 1; } else { i = 2; } } else { i = 3; } return i; } }