Multiply by a variable

package ArithmeticOperations;

public class Multiplication {
	void start() {
		int sum = 3 * 3;
	}

	public static void main(String[] args) {
		new Mulitplication().start();
	}
}

the sum will be: 9