#include<bits/stdc++.h> using namespace std; int main(){ double PAI=3.1415926,r,s; cin>>r; s=PAI*r*r; cout<<fixed<<setprecision(2)<<s<<endl; }