#include <iostream>

using namespace std;

int main (void)
{

        int length, width, total_area;

        cout << "Press return after entering a number.\n";
        cout << "Enter the length of a rectangle.\n";
        cin >> length;
        cout << "Enter the width of a rectangle.\n";     
        cin >> width;

        total_area = length * width;

        cout << "The area of a rectange with length ";
        cout << length;
        cout << " and width ";
        cout << width;
        cout << " is ";
        cout << total_area;
        cout << ".\n";

   return 0 ;
}