import math def surface_area(r): return round(math.pi * 4 * r**2,2) for r in [1,2,4,9,10,13]: print(surface_area(r))