Console.WriteLine("Point initialized");
public Point(int x, int y) {
public void MoveTo(int a, int b) {
public int width, height;
Console.WriteLine("Rectangle initialized");
origin = new Point(0, 0);
public Rectangle(Point p, int w, int h) {
public void MoveTo(Point p) {
public static void Main() {
Rectangle r = new Rectangle();