// wszystko powinno być raczej jasne, ale w razie niejasności pytaj
#include <iostream>
class Rectangle
{
private:
double length;
double height;
public:
double area()
{
return length * height;
}
Rectangle(double x, double y)
{
length = x;
height = y;
}
};
int main()
{
double a, b, res;
std::cout << "Podaj dlugosc boku a:\n";
std::cin >> a;
std::cout << "Podaj dlugosc boku b:\n";
std::cin >> b;
Rectangle rect1 = Rectangle(a, b);
res = rect1.area();
std::cout << "Pole prostokata wynosi:\t" << res;
return 0;
}