class Temp { public boolean flag; void test(int p) { if (flag) { p = 1; } else { p = 2; } System.out.print(p); } }