#include <stdio.h>
#define pai 3.14

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