/* hello.c -- Hello-World-Programm */

#include <stdio.h>

int main ()
{
  printf("You say hello and I say good-bye.\n");
  return 0;
}

