public static void Main()
Areaofcircle ob1 = new Areaofcircle();
public class Areaofcircle
Console.WriteLine("Enter Length=");
length = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter Width=");
width = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("AREA RECTANGLE="+length*width);