public static void Main()
Console.WriteLine("Enter the length of the rectangle: ");
len = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter the width of the rectangle: ");
width = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("The area of the rectangle is", [len * width]);