class Demo {    
    static int a = 42; 
    static int b = 99; 
    void callme() { 
        System.out.println("a = " + a); 
    }
} 
public class StaticByName {
    public static void main(String args[]) { 
        Demo  ob=new Demo();
        ob.callme();
        System.out.println("b = " + Demo.b);
    }
}
