#include <perms.h>
int _imp_mainep(int _imp_argc, char **_imp_argv) {
  void Prhex(int Value, int Places) {
    static const unsigned char Hex[16 /*0:15*/] = {'0', '1', '2', '3', '4', '5',
                                                   '6', '7', '8', '9', 'A', 'B',
                                                   'C', 'D', 'E', 'F'};
    int I;
    for (I = (Places << 2) - 4; I >= 0; I -= 4)
      Printsymbol(Hex[(unsigned)Value >> I & 15]);
  }
  Prhex(0xB00B, 8);
  exit(0);
  return (1);
}
