#include<bits/stdc++.h> using namespace std; int main(){ double a,b,c; b=3.1415926; scanf("%lf",&a); c=b*a*a; printf("%.2f",c); return 0; }