public static void Main()
Console.WriteLine("Please Give Me a Length");
string strLength=Console.ReadLine();
Console.WriteLine("Please Give Me a Width");
string strWidth=Console.ReadLine();
Console.WriteLine("Please Give Me a Depth");
string strDepth=Console.ReadLine();
int iLength=Convert.ToInt32(strLength);
int iWidth=Convert.ToInt32(strWidth);
int iDepth=Convert.ToInt32(strDepth);
int iVol=iLength * iWidth * iDepth;
Console.WriteLine("The Volume is " +iVol);