1.29.43.What happens when you try to compile and run the following code(Long type comparison)?
public class MainClass{ public static void main(String args[]){
Long LA = new Long( 7 ) ;
Long LB = new Long( 7 ) ; if( LA == LB )
System.out.println("Equal"); else System.out.println("Not Equal");
}
}