#include <stdio.h>
#define pie 3.14
int main() {
    int r=0;
    scanf("%d",&r);
    printf("%.2lf",pie*r*r);
    return 0;
}