/* multi line comments here */

// single line comments here

#include <iostream>


using namespace std;

int main ()
{

        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"; // or cout << endl;

        return 0 ;
}