###哈哈哈哈
from math import pi

def ball_square(x):
    return 4*pi*pow(x,2)

r = [1, 2, 4, 9, 10, 13]
for i in r:
    print(round(ball_square(i),2))