#include<stdio.h>
#include<math.h>
int main()
{
	float r = 0.0;
	scanf("%f", &r);  
	float s = 4/3.0 * 3.14 * pow(r, 3);  
	printf("%.2f", s);       
	return 0; 
}