#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void) {
char buf[514];
char pattern[] = "Hallo ABC Hallo ABCDEFG Hallo Hello ELOH HELO Ich bin ein Text ABCD ABCD XYZ XYZ";
int c;
while((c=getc(stdin)) != EOF)
putc(c,stdout);
return EXIT_SUCCESS;
return 0;
}