Following is the Program to find out Volume of a Cone, considering radius and height as input from the user.
radius = float(input("Enter the radius of the cone: "))
height = float(input("Enter the height of the cone: "))
volume = (1/3) * 3.14 * (radius**2) * height
print(f"The volume of the cone with radius {radius} and height {height} is {volume:.2f}
cubic units.")
Radius and Height – are floating point values

