Compare if the value is smaller or equal

package ArithmeticOperations;

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

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

Result will be: true