#include <stdio.h>

int main(void)
{
  fputs("error\n", stderr);
  puts("hello world\n");
  return 0;
}