#include <perms.h>
int _imp_mainep(int _imp_argc, char **_imp_argv) {
  typedef struct Coord {
    float X;
    float Y;
  } Coord;
  float Dist(Coord Here, Coord There) {
    return (Sqrt(REXP((Here.X - There.X), 2) + REXP((Here.Y - There.X), 2)));
  }
  exit(0);
  return (1);
}
