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