#include<iostream> #include<cstdio> using namespace std; #define PI 3.14159 int main(){ double r; cin>>r; printf("A=%.4lf", PI*r*r); return 0; }