public class Test {
public int num;
static int Age=0;
Test(){
num=++Age;
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Test t = new Test(); Test tt = new Test();
System.out.println(t.num );
System.out.println(tt.num);
}