class Test { private final int myA; Test(int a) { myA = a * 1; System.out.println(myA); } }