SUBTRACT one variable

package ArithmeticOperations;

public class Substraction {
	void start() {
		int sum = 3 - 3;
	}

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

the sum will be: 0