Compare if values are not equal

package ArithmeticOperations;

public class NotEqualTo {
	void start() {
		boolean result = (0 != 0);
	}

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

The result will be: false