
public class Rectangle {

	private int width, height;

	public Rectangle() {
		width = 25;
		height = 10;
		System.out.println("Default rectangle created: width = 25, height = 10");
	}
}
