// This program will output the circumference and area
// of the circle with a given radius.

// NG JING JIE

#include <iostream>
using namespace std;

const double LENGTH = 8;
const double WIDTH = 3;

int main()
{
	float perimeter;						// definition of perimeter of rectangle
	float area;								// definition of area of retancgle
	perimeter = 2*(LENGTH+WIDTH);			// 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 circumference

	cout<<" The perimeter of the rectangle is ";// Fill in the code for the cout statement that will output (with description)
	cout<<perimeter;// the area of the circle

	return 0;
}
