#include <stdio.h>
// ----------------------------
// ----------------------------
int main () {
   char buf[BUFSIZ];

   setbuf(stdout, buf);
   puts("This is yiibai");

   fflush(stdout);
   return(0);
}