12 lines
138 B
C

#include <stdio.h>
void main()
{
int c;
while ((c = getchar()) != EOF) {
putchar(c);
printf("%d", EOF);
}
}