public static void Main()
int width = int.Parse(Console.ReadLine());
int length = int.Parse(Console.ReadLine());
int height = int.Parse(Console.ReadLine());
int cubics = width*length*height;
string command = Console.ReadLine();
int boxCubic = int.Parse(Console.ReadLine());
spaceDiff = Math.Abs(totalSpace - cubics);
Console.WriteLine($"No more free space! You need {spaceDiff} Cubic meters more.");
command = Console.ReadLine();
Console.WriteLine($"{spaceDiff} Cubic meters left.");