#include <stdio.h>

void stamp() {
  printf("+--------------------------------------------+\n");
  printf("|Ganderiram Batparia                         |\n");
  printf("|                                            |\n");
  printf("|Principal                                   |\n");
  printf("|Bhat and Bhat Institute of Hotel Management |\n");
  printf("|NAAC Z... category                          |\n");
  printf("|Phone: 1234567894 (always engaged)          |\n");
  printf("|       2314243501 (always switched off)     |\n");
  printf("+--------------------------------------------+\n");
}

int main() {
  stamp();
  return 0;
}
