#include int main(){ while( 1 ){ char a = fgetc(stdin); if( feof(stdin) ) break; if( a != '\n' && a != '\r' ) fputc(a, stdout); } }