// 9, 19 -> 9, 24
package p;

class A {
	private static final int CONSTANT= 3*  1;

	void foob() {
		
		int e= (2 + 2) * CONSTANT;
		
		int f= 5 *CONSTANT*  (1 + 1);
	}
}