extern int printf(const char * format, ... );

int main()
{
  printf("Hello, World\n");
  return 0;
}
