using System;
class Rectangle
{
private float height;
private float width;
public Rectangle(float height, float width)
this.height = height;
this.width = width;
}
// Obtaining the value of the property area
public float Area
get { return this.height * this.width; }