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