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