#include <perms.h>
int _imp_mainep(int _imp_argc, char **_imp_argv) {
  void Doit(void) {}
  int A;
  int B;
  if (A != B) Doit();  //  do it %if %not a = b
  if (A == B) Doit();  //  do it %unless %not a = b
  if (A != B) Doit();  //  %if %not a = b %then do it
  if (A == B) Doit();  //  %unless %not a = b %then do it
  exit(0);
  return (1);
}
