


class Box {


	//fields

	private int width = 0;
	private int height = 0;
	private int length = 0;


	// default constructor

	public Box(int w, int h, int l) {
		width = w;
		height = h;
		length = l;
	}

	// getters

	public int getWidth() {
		return width;
	}

	public int getHeight() {
		return height;
	}

	public int getLength() {
		return length;
	}



}
