import math

def esfera(r):

    s=4*math.pi*(r**2)
    v=(4/3)*math.pi*(r**3)

    return round(s, 1), round(v,1)
