using System;
class Box
{
public double length;
public double width;
public double height;
}
class Program
static void Main(string[] args)
Box b1 = new Box();
Box b2 = new Box();
double vol = 0.0;
b1.height = 5.0;
b1.length = 6.0;
b1.width = 7.0;
b2.height = 10.0;
b2.length = 12.0;
b2.width = 13.0;
vol = b1.height * b1.length * b1.width;
Console.WriteLine("kutiq 1 e s obem= " + vol);
vol = b2.height * b2.length * b2.width;
Console.WriteLine("kutiq 2 e s obem= " + vol);
Console.ReadLine();