import java.io.*;

/**
 * if a value doesn't change such as PI then make it a constant
 */

public class Circle2 {
  public static final double PI = 3.14;

  public static void main(String argv[]) throws IOException {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    System.out.print("Please enter the radius of the circle: ");
    String input = br.readLine();
    double radius = Double.parseDouble(input);
    double area = PI * radius * radius;
    System.out.println("The area of a circle with radious " + radius + " is: " + area);
  }
}
