#include <stdio.h>

int main() {
  printf("This goes to stdout.");
  fprintf(stderr,"This goes to stderr.");
  return 0;
}
