#include <iostream>
#include<cmath>
#include<iomanip>
using namespace std;
int main() {
int n;
cin>>n;
cout<<fixed<<setw(6)<<M_PI*n*n;
//GCC编译器中 <cmath>头文件中定义了M_PI。
}
// 64 位输出请用 printf("%lld")
自存,GCC编译器中 <cmath>头文件中定义了M_PI,M_PI为pai的数值

京公网安备 11010502036488号