#include <bits/stdc++.h> using namespace std; int main() { double r,x,s; cin>>r; x=3.14159; s=x*r*r; cout<<"A="<<fixed<<setprecision(4)<<s<<endl; return 0; }