/*	Circle Area program  
	Calculates the area of a circle using the formula A=pi * r * r
	A Student, 7/13/97                                                                        */

#include <iostream.h>

using namespace std;	// October 5, 2001

int main()
{
	cout << "-Calculate the area of a circle-" << endl;
	cout << endl;
	cout << "Radius = " << 10 << endl;
	cout << "Area = " << (3.14*10*10) << endl;
	return(0);
}


