#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
double d = 122.345;
cout << fixed << setprecision(4) << d;
}
#include<bits/stdc++.h>
using namespace std;
int main ()
{
double A, n, R, Square_of_R;
cin >> R;
Square_of_R = pow(R,2);
n = 3.14159;
A = n * Square_of_R;
cout << "A=" << fixed << setprecision(4) << A << endl;
//printf("A=%.4lf", A);
return 0;
}