#include int main() { using namespace std; char c; while ((c = fgetc(stdin)) != EOF) { fputc(c, stdout); } }