using System;
class rectangle
{
public double Length;
public double width;
public double GetArea()
return Length * width;
}
public static void Main()