import math num1 = float(input("Enter radius: ")) num2 = float(input("Enter depth: ")) volume = round(math.pi * num1**2 * num2,3) print(area)