#include <perms.h>
int _imp_mainep(int _imp_argc, char **_imp_argv) {
  static const int West = 1;
  static const int East = 2;
  static const int Bs = 8;
  static const int Del = 127;
  int Last = 8;
  void Left(void) {}
  void Right(void) {}
  void Deletebackward(void) {}
  void Deleteforward(void) {}
  void Again(void) {
    if (Last == West)
      Left();
    else if (Last == East)
      Right();
    else if (Last == Bs)
      Deletebackward();
    else if (Last == Del)
      Deleteforward();
  }
  Again();
  exit(0);
  return (1);
}
