#include <stdio.h>

int main(void)
{
  const char *n = 
  "test\n"
  "test\n";

  printf(n); 
  return 0;
}