// This program will output the circumference and area
// of the circle with a given radius

//TAN ROUXUEN

#include <iostream>
using namespace std;

const int LENGTH = 8;
const int WIDTH = 3;

int main()
{
	int area;								// definition of area of rectangle 
	int perimeter;				      // definition of perimeter 
	perimeter = LENGTH*2 + WIDTH*2 ;	// computes perimeter
	area = LENGTH*WIDTH ;							// computes area

	cout << "The area of the rectangle is " ; // Fill in the code for the cout statement that will output (with description)
	cout << area << endl;// the area of the rectangle
	

	cout << "The perimeter of the rectangle is " ; // Fill in the code for the cout statement that will output (with description)
	cout << perimeter ;// the perimeter of the rectangle
	

	return 0;
}
