/* Listing0909.java */

public class Listing0909
{
  public static void main(String[] args)
  {
    double x, y;
    for (x = 0.0; x <= 10.0; x = x + 1.0) {
      y = Math.sqrt(x);
      System.out.println("sqrt("+x+") = "+y);
    }
  }
}