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