#include<stdio.h>
#include<math.h>
main()
{
    double a,r;
    scanf("%lf",&r);
    a=3.14159*pow(r,2);
    printf("A=%.4lf\n",a);
    return 0;
}
