
#include <iostream>
using namespace std;
class Rectangle{
private:
int l;
int w;
public:
void set_l(int l);
void set_w(int w);
int get_l();
int get_w();
void show();
};
int Rectangle::get_l()
{
int g_l;
cin >> g_l ;
return g_l;
}
int Rectangle::get_w()
{
int g_w;
cin >> g_w;
return g_w;
}
void Rectangle::set_l(int l)
{
l=Rectangle::get_l();
}
void Rectangle::set_w(int w)
{
w=Rectangle::get_w();
}
void Rectangle::show()
{
int lo,we;
Rectangle::set_l(int lo);
set_w(int we);
cout << lo * we << endl;
}
int main()
{
Rectangle rect;
rect.show();
return 0;
}