// 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 PI = 3.14;
const double RADIUS = 5.4;

int main()
{
	float area;								// definition of area of circle 
	int circumference;				// definition of circumference 
	circumference = 2 * PI * RADIUS;	// computes circumference
	area = PI*RADIUS*RADIUS ;							// computes area
	
	/* the answer showed is in integer not decimal because of the int*/

	cout<<" The circumference of the circle is ";// Fill in the code for the cout statement that will output (with description)
	cout<<circumference<<endl;// the circumference

	cout<<" The area of the circle is ";// Fill in the code for the cout statement that will output (with description)
	cout<<area;// the area of the circle

	return 0;
}
