#include <stdio.h> /* for input/output */
#include <math.h> /* for asin */ 

main() {
  float x;
  x = asin(1.0);
  printf("%f\n",x);
}

/* OUTPUT:
1.570796
 */

/* (which is pi/2) */
