#include <stdio.h> int main(void); int main(void) { int c; while ((c = getchar()) != EOF) { putchar(c); } return(0); }