import java.util.stream.IntStream;
public class Factorial {
public static void main (String[] args) {
Box bigbox = new Box(10, 20, 5);
bigbox.width=100;
System.out.print (bigbox.width);
}
}
class Box {
int width;
int height;
int depth;
public Box (int w, int h, int d) //**********
{
this.width = w;
this.height = h;
this.depth = d;
} //***********
public int getVolume() {
return width * height * depth;
}
}