1.29.47.What would happen if you tried to compile and run the following code(wapper class)?
public class MainClass{ public static void main(String args[]){
Long L = new Long( 7 ); if( L.equals( 7L ))
System.out.println("Equal"); else System.out.println("Not Equal");
}
}