class STEP extends xouuyy
{
	 private  String bsd;
     private int stepd;
     private int stepnd;
     private int steppow;



	public STEP(String bsd,int stepd,int steppow,int stepnd)
	{  this.bsd=bsd;
	   this.stepd=stepd;
	   this.steppow=steppow;
	   this.stepnd=stepnd;

		}
   public  String getString()
   {return this.bsd;}
      public  int  getintd()
   {return this.stepd;}
    public  int  getintpow()
   {return this.steppow;}
    public  int  getintnd()
   {return this.stepnd;}

     static STEP[] step0 = new STEP[3];
      public static void main (String[] args){
   step0 [0] =new STEP("TEXT1",0,1,0);
   step0 [1] =new STEP("TEXT1",1,1,0);
   step0 [2] =new STEP("TEXT1",1,1,1);
 int b = step0[1].getintnd();
}





	}