Input
Output
#include <iostream> #define Radius 20 using namespace std; int main(){ float area; const float PI=3.14; area=PI*Radius*Radius; cout <<"The value of PI is "<< area << endl; return 0; }