#include <stdio.h>

int main() {

    int r;
    float s;
    scanf("%d", &r);
    s = r * r * 3.14;
    printf("%.2f\n", s);
    return 0;
}