#include <stdio.h>

void hello (void)
{
  printf ("Hello, world!\n");
}

int main (void)
{
  hello ();
  return 0;
}