# include "stdio.h" # include "stdlib.h" void main() { int c; c=getchar(); while(c!=EOF) { putchar(c); c=getchar(); } system("pause"); }