// Das Hallo-Welt-Programm

#include <stdio.h>

void main(void)
{
  printf("HALLO WELT!\n");
}

