#include <iostream>

using namespace std;

int main()
{

    int length;	// holds length 
    int width;	// holds width 
    int area;	// holds area

    int *lengthPtr = NULL;	// int pointer which will be set to point to length 
    int *widthPtr = NULL;	// int pointer which will be set to point to width

    cout << "Please input the length of the rectangle" << endl;
    cin >> length;

    cout << "Please input the width of the rectangle" << endl;
    cin >> width;

    lengthPtr=&length;// Fill in code to make lengthPtr point to length (hold its address)

    widthPtr=&width;// Fill in code to make widthPtr point to width (hold its address)

    area = *lengthPtr**widthPtr;  // Fill in code to find the area by using only the pointer variables

    cout << "The area is " << area << endl;

    if ( *lengthPtr> *widthPtr)// Fill in the condition length > width by using only the pointer variables )
        cout << "The length is greater than the width" << endl;

    else if (*widthPtr> *lengthPtr)// Fill in the condition of width > length by using only the pointer variables)
        cout << "The width is greater than the length" << endl;

    else
        cout << "The width and length are the same" << endl;

    return 0;
}
