public static void Main()
Console.WriteLine("Enter length of rectangle");
length = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter width of rectangle");
width = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Area is {0}", area);