#include<stdio.h>
int main()
{
	int r = 0; 
	scanf("%d", &r);  
	float s = 3.14 * r * r;  
	printf("%.2f", s);       
	return 0; 
}