#include <iostream>
using namespace std;

int main() {
	
	int length, breadth;
	length = 20;
	breadth = 10;
	double area;
	//the object is a rectangle
	area = length * breadth;
	cout << "The area of the rectangle is " << area << endl;
	return 0;
}