#include <perms.h>
/*perm*/ void PRINTSTRING(_imp_string S); /*perm*/
void NEWLINE(void);
int _imp_mainep(int _imp_argc, char **_imp_argv) {
  _imp_enter();
  auto void FANCY9(_imp_string * PARAM) {
    _imp_enter();
    PRINTSTRING(PARAM);
    NEWLINE();
    _imp_leave();
  }
  _imp_string STR1[3 - 2 + 1];
  _imp_string *STR2[5 - 4 + 1];
  STR1[3] = _imp_str_literal("hello");
  STR2[3] = &STR1[2];
  STR2[3] = _imp_str_literal("world");
  FANCY9(STR1);
  PRINTSTRING(_imp_str_literal("world!"));
  _imp_leave();
  exit(0);
  return (0);
}
