public class staticDemo {
  public static void main(String[] args) {
    foo f1=new foo();
    bar b1=new bar();
    foo f2=new bar();
    f1.printMe(); f1.sPrintMe();
    b1.printMe(); b1.sPrintMe();
    f2.printMe(); f2.sPrintMe();
  }
}

