#include <perms.h>
int _imp_mainep(int _imp_argc, char **_imp_argv) {
  int /* boolean */ Almostequals(float Left, float Right) {
    if (Left * 0.999999 <= Right && Right <= Left * 1.000001) return (1);
    if (Right * 0.999999 <= Left && Left <= Right * 1.000001) return (1);
    return (0);
  }
  if (Almostequals(Pi, 3.1415926))
    ;
  exit(0);
  return (1);
}
