public static void main(String[] args) {
    // TODO Auto-generated method stub

    Stuff.laptop = "Asus";

    // Stuff.subjectName();

    System.out.println("Round before Stuff was created " + Stuff.rounds);
    Stuff thingOne = new Stuff();

    new Stuff();

    System.out.println("Round after Stuff was created " + Stuff.rounds);
    thingOne.name = "Hemang";

    thingOne.sayName();

    thingOne.subjectName();
    System.out.println(Math.PI);

    System.out.println(Stuff.LUCKY_ME);
  }