Add two variables

package ArithmeticOperations;

public class Addition {
	
	void start () {
		int sum = 3 + 3;
	}
	
	public static void main(String[] args) {
		new Addition().start();

	}

}

the sum will be: 6