#include <iostream>
#include <cmath>
using namespace std;
#define PI 3.14159 //anywhere you see PI, it will be replaced with the number to its right
#define AREA_CIRC(radius) (PI * pow(radius, 2))
int main(){
cout << "Circle Area " << AREA_CIRC(5) << endl;
}