/// area: outputs the area of a rectangle /// Mikhail Nesterenko /// 8/25/13 #include using std::cin; using std::cout; using std::endl; /// /// this is a description of main() /// function /// int main() { /// /// extract length and width /// cout << "Rectangle dimensions "; int length; int width; cin >> length >> width; /// compute and output the area int area = length * width; cout << "Area: " << area << " = length " << length << " * width " << width << endl; }