import java.util.Scanner;
public class VolumeOfACylinder {
public static void main(String[] args){
// area = radius * radius * 3.14159
Scanner scum = new Scanner(System.in);
double radius = scum.nextDouble();
System.out.println("Please enter the radius: ");
double area;
area = radius * radius * 3.14159;
// volume = area * length
Scanner solo = new Scanner(System.in);
double area;
double lenth = solo.nextDouble();
System.out.println("Please enter the length: ");
double volume;
volume = area * length;
System.out.println("The area is " + area + "and the volume is " + area * length );
}
}