import java.util.*;
   class Example{
    public static void main(String args[]){
        int x =10;
        boolean b = true;
        if((b=false)==false){
            
            System.out.println(b);
        }
    }
}
output : false how this == and = operators work in java when both used together in this if clause with a Boolean expression?