public static void Main()
Console.Write("Enter the length: ");
int l = int.Parse(Console.ReadLine());
Console.Write("Enter the width: ");
int w = int.Parse(Console.ReadLine());
Console.WriteLine("The length of our rectangle is: "+l+" and the width is: "+w);
Console.WriteLine("The perimeter is: "+Peri+" and the Area is: "+area);