/*
Credits:
--Pxpc2 C++ book
*/
#include <iostream>
using namespace std;
int main ()
{
int length; // this should declare a variable.
int width; // this should declare another variable.
cout << "Enter the Length: ";
cin >> length; // ....................................................../////////
cout << "enter the width: ";
cin >>; // lalalalalalala
cout << "The area is ";
cout << length * width; // ...
return 0
}
