import java.io.*;
public class CylinderDriver
{
	public static void main(String [] args) throws IOException
	{
		double height;
		double radius;
		final double PI = 3.14;

		BufferedReader input=new BufferedReader(new InputStreamReader(System.in));
		System.out.print("\nWhat is the height: ");
		height=Double.parseDouble(input.readLine());

		System.out.print("\nWhat is the radius: ");
		radius=Double.parseDouble(input.readLine());

		Cylinder myCylinder=new Cylinder(height, radius);

		System.out.println("The height of this Cylinder is: "+myCylinder.heightCylinder());
		System.out.println("The radius of this Radius is: "+myCylinder.radiusCylinder());
		System.out.println("The Volume of this Cylinder is: "+myCylinder.volumeCylinder());
		System.out.println("The Cylinder Program is Done");
	}
}