Answer
Code
Work Step by Step
$Code:$
radius=float(input("Enter the radius:"))
length=float(input("Enter length of a cylinder:"))
area=radius*radius*(3.14)
Volume=area*length
print("The area is ",area)
print("The Volume is ", Volume)