import java.util.* ; class B { //Initialize this with the literal "Oscar" static String firstName = "Oscar" ; static String lastName ; //Use this static block to intialize the lastName with the //literal "Bonavena" static { lastName = "Bonavena" ; } static void printName() { System.out.println( firstName + " " + lastName ) ; } B() { //Gets initialized after data members initialization System.out.println( "B()" ) ; } } public class soln1 { public static void main( String args[] ) { B.printName() ; } //public static void main( String args[] ) }