#include <perms.h>
int _imp_mainep(int _imp_argc, char **_imp_argv) {
  int Global;
  void Fred(void) {
    int Local;
    int Array[Global - 5 + 1];
    Local = 0xDEAD;
    Array[6] = 0;
    Global = 0xBEEF + Array[6];
    if ((Local << 16 | Global) == 0xDEADBEEF) _imp_monitor();
  }
  int Int;
  _imp_string Jim;
  Int = 4;
  Jim = _imp_str_literal("hello\nworld \"haha!\"");
  Int = (Int * Int + Int - 4) / 22;
  Global = 8;
  for (Int = 1; Int <= Global; Int += 3) Fred();
  if (Int == Global) _imp_monitor();
  if (Int >= Global) _imp_monitor();
  if (Int > Global) _imp_monitor();
  if (Int <= Global) _imp_monitor();
  if (Int < Global) _imp_monitor();
  if (Int != Global) _imp_monitor();
  exit(0);
  return (1);
}
