#include<iostream> #include<cstdio> using namespace std; int main(){ double R=0,A=0; scanf("%lf",&R); A=3.14159*R*R; printf("A=%.4lf",A); return 0; }