class blah { int x1=10; int x2=17; String method1(double x1) { if (x1 > 0) { int x2 = 1; } { boolean x2 = true; } return method2(x1+x2); } String method2(double x2) { return "the value is: "+(x2+x1); } } public class scope0 { public static void main(String[] args) { System.out.println(new blah().method1(1)); } } // output: 28