#include int main() { char ch; while((ch = fgetc(stdin)) != EOF) fputc(ch,stdout); return(0); }