#include <iostream> using namespace std; int main(){ double a,b; b=3.1415926; scanf("%lf",&a); a*=a; a*=b; printf("%.2lf",a); }