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's area is equal to " + iArea);
Console.WriteLine("Please enter the # of Pieces:");
string strPieces = Console.ReadLine();
int intPieces = int.Parse(strPieces);
PieceArea = iArea / intPieces;
Console.WriteLine("Each pieces' area is equal to " + PieceArea);