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