#include <iostream>
int main()
{
constdouble PI = 3.14159265 ;
double radius;
std::cout << "Enter radius: " ; //prompt
std::cin >> radius ; // read in the radius
// for now, we will assume that the user entered a positive value
constdouble area = PI * radius * radius; // calculate area
std::cout << "the radius is: " << radius << '\n' //output radius value
<< "the area is: " << area << '\n' ; //output area value
}