public static void Main()
Console.WriteLine("Please Enter the Length");
string strLength = Console.ReadLine();
Console.WriteLine("Please Enter the Width");
string strWidth = Console.ReadLine();
int iLength = Convert.ToInt32(strLength);
int iWidth = int.Parse(strWidth);
int iArea = iLength * iWidth;
Console.WriteLine("The rectangle is equal to " +iArea);
Console.WriteLine("Please Enter the # of Pieces");
string strPieces = Console.ReadLine();
int iPieces = int.Parse(strPieces);
int iAreaPieces = iArea/iPieces;
Console.WriteLine("The Area by the Number of Pieces is " +iAreaPieces);