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