BC41 牛牛的球

思路:

step1:输入半径;求出面积并打印;

代码如下:

r = int(input())
s = 4/3 * 3.14 * r**3
print(round(s,2))