/* boring.c - the classic filter */ #include #include int c; main() BEGIN WHILE ( (c=getchar()) != EOF ) DO putchar(c); OD END