#include <perms.h>
int _imp_mainep(int _imp_argc, char **_imp_argv) {
  void Tabulate(void Func(double X), double From, double To, int Steps) {
    float Value;
    float Inc;
    int I;
    Inc = (To - From) / Steps;
    Value = From;
    for (I = 0; I <= Steps; I++) {
      Print(Value, 4, 2);
      Print(Func, 10, 4);
      Newline();
      Value += Inc;
    }
  }
  Printstring(_imp_str_literal("\n    x               sine(x)\n"));
  Tabulate(Sin(), 0.0, Pi / 2, 10);
  Printstring(_imp_str_literal("\n    x         squareroot(x)\n"));
  Tabulate(Sqrt(), 0.0, 10.0, 5);
  exit(0);
  return (1);
}
