Introduction to Programming Using Python 3, Y. Daniel Liang
# Enter radius of the cylinder
radius, length = eval(input("Enter the radius and length of a cylinder: "))

area = radius * radius * 3.14159
volume = area * length

print("The area is", area)
print("The volume of the cylinder is", volume)