#include <stdio.h>
#include <math.h>

int main() {
    int r;
    scanf("%d", &r);
    printf("%.2lf", 3.14*pow(r,2));
    return 0;
}