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