public static void Main()
Console.WriteLine("What is the side of the rectangle?");
side = int.Parse(Console.ReadLine());
Console.WriteLine("What is the width of the rectangle?");
width = int.Parse(Console.ReadLine());
rectangle = side * width;
Console.WriteLine("The area of the rectangle is " + rectangle);