#include <iostream>
using namespace std;
class volume
{
	private:
		int length;
		int width;
		int heigth;
	public:
		void set_volume(void);
		void show_volume(void);
};
int main()
{
	volume a[3];
	a[0].set_volume();
	a[0].show_volume();
	a[1].set_volume();
	a[1].show_volume();
	a[2].set_volume();
	a[2].show_volume();
}
void volume::set_volume(void) 
{
	cout<<"putin length :";
	cin>>length;
	cout<<endl<<"putin width :";
	cin>>width;
	cout<<endl<<"putin heigth :";
	cin>>heigth;
}
void volume::show_volume(void)
{
	int v;
	v=length*width*heigth;
	cout<<v<<" ";
}