#include <stdio.h>
#include <math.h>
int main(){
    int r;
    float pi=3.14;
    scanf("%d",&r);
    printf("%f",(float)(r*r*pi));
    return 0;
}