using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int l = 50, w = 21, h = 15; Console.WriteLine("box volume = {0}", l * w * h); } } }