// 04102008.cpp. P H Anderson, Apr 10, '08

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define FOR_ALL(i, num)  for(i=0; i<num; i++)
#define PRINT_STR(x) printf( #x ) 
#define WAIT() while(getchar() != 'x')


int main()
{
  int n;
  
  FOR_ALL(n, 20)
  {
      PRINT_STR(Morgan State University\n);
  }  
  WAIT();  
  
}