class XMLFile{
        Tag[] tags = null;
        int num ;
        XMLFile(int num){
            this.num = num > 1 ? num : 1;
            init();
        }
        private void init(){
            tags = new Tag[num];
            for(int i = 0 ;i < tags.length ; i ++){
                tags[i] = new Tag(i);
            }
        }
     }     class Tag{
        int i ;
        public Tag(int i){
            this.i = i;
        }
     }