
public class Rectangle {

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