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