

class Mar17 {
	public static void main(String[] args) {
		Bucket b1 = new Bucket();

		// b1.height = -10;   height field is not in the API	

		b1.setHeight(-10);

		System.out.println(b1.getHeight());
	}

}
