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